現在のNSDateをタイムスタンプ形式で取得する


83

現在の時刻を取得して文字列に設定する基本的な方法があります。ただし、1970年以降のUNIXタイムスタンプ形式で現在の日付と時刻をフォーマットするにはどうすればよいですか?

これが私のコードです:

NSDate *currentTime = [NSDate date];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"hh-mm"];
NSString *resultString = [dateFormatter stringFromDate: currentTime];

NSDateFormatter'resultString'をタイムスタンプに変更するために使用することは可能ですか?

回答:


216

これが私が使用するものです:

NSString * timestamp = [NSString stringWithFormat:@"%f",[[NSDate date] timeIntervalSince1970] * 1000];

(ミリ秒の場合は1000倍、それ以外の場合はそれを取り出します)

いつも使っているのなら、マクロを宣言するといいかもしれません

#define TimeStamp [NSString stringWithFormat:@"%f",[[NSDate date] timeIntervalSince1970] * 1000]

次に、次のように呼び出します。

NSString * timestamp = TimeStamp;

または方法として:

- (NSString *) timeStamp {
    return [NSString stringWithFormat:@"%f",[[NSDate date] timeIntervalSince1970] * 1000];
}

時間間隔として

- (NSTimeInterval) timeStamp {
    return [[NSDate date] timeIntervalSince1970] * 1000;
}

注意:

1000は、タイムスタンプをミリ秒に変換します。時間間隔(秒単位)が必要な場合は、これを削除できます。

迅速

Swiftでグローバル変数が必要な場合は、次を使用できます。

var Timestamp: String {
    return "\(NSDate().timeIntervalSince1970 * 1000)"
}

次に、あなたはそれを呼び出すことができます

println("Timestamp: \(Timestamp)")

繰り返しになります*1000が、これはミリ秒用です。必要に応じて、削除できます。あなたがそれをとして保持したい場合NSTimeInterval

var Timestamp: NSTimeInterval {
    return NSDate().timeIntervalSince1970 * 1000
}

これらをクラスのコンテキスト外で宣言すると、どこからでもアクセスできるようになります。


2
問題ありません。状況に役立つ場合に備えて、使用するマクロで更新しました。
ローガン

3
@Loganに感謝しますが、マクロは常に推奨されていないと確信しています。マクロを使用すると、大きなプログラムの理解を簡単に失う可能性があります。これを実行し、必要なときにいつでも呼び出されるメソッドを作成するのが最善です。
supertecnoboff 2014年

ところで-あなたは辞書に値を追加している場合は、あなただけ行うことができます:@{@"timestamp": @([[NSDate date] timeIntervalSince1970])
Cbas


7
- (void)GetCurrentTimeStamp
    {
        NSDateFormatter *objDateformat = [[NSDateFormatter alloc] init];
        [objDateformat setDateFormat:@"yyyy-MM-dd"];
        NSString    *strTime = [objDateformat stringFromDate:[NSDate date]];
        NSString    *strUTCTime = [self GetUTCDateTimeFromLocalTime:strTime];//You can pass your date but be carefull about your date format of NSDateFormatter.
        NSDate *objUTCDate  = [objDateformat dateFromString:strUTCTime];
        long long milliseconds = (long long)([objUTCDate timeIntervalSince1970] * 1000.0);

        NSString *strTimeStamp = [NSString stringWithFormat:@"%lld",milliseconds];
NSLog(@"The Timestamp is = %@",strTimeStamp);
    }

 - (NSString *) GetUTCDateTimeFromLocalTime:(NSString *)IN_strLocalTime
    {
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd"];
        NSDate  *objDate    = [dateFormatter dateFromString:IN_strLocalTime];
        [dateFormatter setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"UTC"]];
        NSString *strDateTime   = [dateFormatter stringFromDate:objDate];
        return strDateTime;
    }

注:-タイムスタンプはUTCゾーンにある必要があるため、現地時間をUTC時間に変換します。


GetCurrentTimeStamp()には、小文字の問題がいくつかあります。Xcodeにカットアンドペーストして表示
tdios 2015年

これを使用してください "NSString * strTimeStamp = [NSString stringWithFormat:@"%lld "、milliseconds]; NSLog(@"タイムスタンプは=%@ "、strTimeStamp);"
ヴィッキー

6

このメソッドをNSDateオブジェクトで直接呼び出し、タイムスタンプをミリ秒単位の小数点以下の桁数のない文字列として取得する場合は、このメソッドをカテゴリとして定義します。

@implementation NSDate (MyExtensions)
- (NSString *)unixTimestampInMilliseconds
{
     return [NSString stringWithFormat:@"%.0f", [self timeIntervalSince1970] * 1000];
}

1

//次のメソッドは、ミリ秒に変換した後にタイムスタンプを返します。[文字列を返します]

- (NSString *) timeInMiliSeconds
{
    NSDate *date = [NSDate date];
    NSString * timeInMS = [NSString stringWithFormat:@"%lld", [@(floor([date timeIntervalSince1970] * 1000)) longLongValue]];
    return timeInMS;
}

1

使用することもできます

@(time(nil)).stringValue);

秒単位のタイムスタンプ。


1

現在のタイムスタンプを取得するためのマクロを定義すると便利です

class Constant {
    struct Time {
        let now = { round(NSDate().timeIntervalSince1970) } // seconds
    }
} 

その後、あなたは使用することができます let timestamp = Constant.Time.now()


0

迅速:

カメラプレビュー上にタイムスタンプを表示するUILabelがあります。

    var timeStampTimer : NSTimer?
    var dateEnabled:  Bool?
    var timeEnabled: Bool?
   @IBOutlet weak var timeStampLabel: UILabel!

override func viewDidLoad() {
        super.viewDidLoad()
//Setting Initial Values to be false.
        dateEnabled =  false
        timeEnabled =  false
}

override func viewWillAppear(animated: Bool) {

        //Current Date and Time on Preview View
        timeStampLabel.text = timeStamp
        self.timeStampTimer = NSTimer.scheduledTimerWithTimeInterval(1.0,target: self, selector: Selector("updateCurrentDateAndTimeOnTimeStamperLabel"),userInfo: nil,repeats: true)
}

func updateCurrentDateAndTimeOnTimeStamperLabel()
    {
//Every Second, it updates time.

        switch (dateEnabled, timeEnabled) {
        case (true?, true?):
            timeStampLabel.text =  NSDateFormatter.localizedStringFromDate(NSDate(), dateStyle: .LongStyle, timeStyle: .MediumStyle)
            break;
        case (true?, false?):
            timeStampLabel.text = NSDateFormatter.localizedStringFromDate(NSDate(), dateStyle: .LongStyle, timeStyle: .NoStyle)
            break;

        case (false?, true?):
            timeStampLabel.text = NSDateFormatter.localizedStringFromDate(NSDate(), dateStyle: .NoStyle, timeStyle: .MediumStyle)
            break;
        case (false?, false?):
            timeStampLabel.text =  NSDateFormatter.localizedStringFromDate(NSDate(), dateStyle: .NoStyle, timeStyle: .NoStyle)
            break;
        default:
            break;

        }
    }

alertViewをトリガーする設定ボタンを設定しています。

@IBAction func settingsButton(sender : AnyObject) {


let cameraSettingsAlert = UIAlertController(title: NSLocalizedString("Please choose a course", comment: ""), message: NSLocalizedString("", comment: ""), preferredStyle: .ActionSheet)

let timeStampOnAction = UIAlertAction(title: NSLocalizedString("Time Stamp on Photo", comment: ""), style: .Default) { action in

    self.dateEnabled = true
    self.timeEnabled =  true

}
let timeStampOffAction = UIAlertAction(title: NSLocalizedString("TimeStamp Off", comment: ""), style: .Default) { action in

    self.dateEnabled = false
    self.timeEnabled =  false

}
let dateOnlyAction = UIAlertAction(title: NSLocalizedString("Date Only", comment: ""), style: .Default) { action in

    self.dateEnabled = true
    self.timeEnabled =  false


}
let timeOnlyAction = UIAlertAction(title: NSLocalizedString("Time Only", comment: ""), style: .Default) { action in

    self.dateEnabled = false
    self.timeEnabled =  true
}

let cancel = UIAlertAction(title: NSLocalizedString("Cancel", comment: ""), style: .Cancel) { action in

}
cameraSettingsAlert.addAction(cancel)
cameraSettingsAlert.addAction(timeStampOnAction)
cameraSettingsAlert.addAction(timeStampOffAction)
cameraSettingsAlert.addAction(dateOnlyAction)
cameraSettingsAlert.addAction(timeOnlyAction)

self.presentViewController(cameraSettingsAlert, animated: true, completion: nil)

}


0
    NSDate *todaysDate = [NSDate new];
NSDateFormatter *formatter = [NSDateFormatter new];
[formatter setDateFormat:@"MM-dd-yyyy HH:mm:ss"];
NSString *strDateTime = [formatter stringFromDate:todaysDate];

NSString *strFileName = [NSString stringWithFormat:@"/Users/Shared/Recording_%@.mov",strDateTime];
NSLog(@"filename:%@",strFileName);

ログは次のようになります:filename:/ Users / Shared / Recording_06-28-2016 12:53:26.mov


0

文字列としてタイムスタンプが必要な場合。

time_t result = time(NULL);                
NSString *timeStampString = [@(result) stringValue];

0

NSDate Swift3からタイムスタンプを取得するには

func getCurrentTimeStampWOMiliseconds(dateToConvert: NSDate) -> String {
    let objDateformat: DateFormatter = DateFormatter()
    objDateformat.dateFormat = "yyyy-MM-dd HH:mm:ss"
    let strTime: String = objDateformat.string(from: dateToConvert as Date)
    let objUTCDate: NSDate = objDateformat.date(from: strTime)! as NSDate
    let milliseconds: Int64 = Int64(objUTCDate.timeIntervalSince1970)
    let strTimeStamp: String = "\(milliseconds)"
    return strTimeStamp
}

使用するには

let now = NSDate()
let nowTimeStamp = self.getCurrentTimeStampWOMiliseconds(dateToConvert: now)
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.