Oto czego używam:
NSString * timestamp = [NSString stringWithFormat:@"%f",[[NSDate date] timeIntervalSince1970] * 1000];
(razy 1000 dla milisekund, w przeciwnym razie wyjmij to)
Jeśli używasz go cały czas, dobrze byłoby zadeklarować makro
#define TimeStamp [NSString stringWithFormat:@"%f",[[NSDate date] timeIntervalSince1970] * 1000]
Następnie nazwij to tak:
NSString * timestamp = TimeStamp;
Lub jako metoda:
- (NSString *) timeStamp {
return [NSString stringWithFormat:@"%f",[[NSDate date] timeIntervalSince1970] * 1000];
}
Jako TimeInterval
- (NSTimeInterval) timeStamp {
return [[NSDate date] timeIntervalSince1970] * 1000;
}
UWAGA:
1000 służy do konwersji znacznika czasu na milisekundy. Możesz to usunąć, jeśli wolisz swój timeInterval w sekundach.
Szybki
Jeśli chcesz mieć zmienną globalną w Swift, możesz użyć tego:
var Timestamp: String {
return "\(NSDate().timeIntervalSince1970 * 1000)"
}
Następnie możesz to nazwać
println("Timestamp: \(Timestamp)")
Ponownie, *1000
jest to milisekundy, jeśli wolisz, możesz to usunąć. Jeśli chcesz zachować go jako plikNSTimeInterval
var Timestamp: NSTimeInterval {
return NSDate().timeIntervalSince1970 * 1000
}
Zadeklaruj je poza kontekstem jakiejkolwiek klasy, a będą dostępne wszędzie.
@{@"timestamp": @([[NSDate date] timeIntervalSince1970])
posługiwać się
[[NSDate date] timeIntervalSince1970]
źródło
@([[NSDate date] timeIntervalSince1970]).stringValue
- (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; }
UWAGA: - Znacznik czasu musi być w strefie UTC, więc konwertuję nasz czas lokalny na czas UTC.
źródło
Jeśli chcesz wywołać tę metodę bezpośrednio w obiekcie NSDate i uzyskać znacznik czasu jako ciąg w milisekundach bez żadnych miejsc dziesiętnych, zdefiniuj tę metodę jako kategorię:
@implementation NSDate (MyExtensions) - (NSString *)unixTimestampInMilliseconds { return [NSString stringWithFormat:@"%.0f", [self timeIntervalSince1970] * 1000]; }
źródło
// Poniższa metoda zwróci sygnaturę czasową po konwersji na milisekundy. [RETURNS STRING]
- (NSString *) timeInMiliSeconds { NSDate *date = [NSDate date]; NSString * timeInMS = [NSString stringWithFormat:@"%lld", [@(floor([date timeIntervalSince1970] * 1000)) longLongValue]]; return timeInMS; }
źródło
Można również użyć
dla znacznika czasu w sekundach.
źródło
Wygodne jest zdefiniowanie makra w celu uzyskania aktualnego znacznika czasu
class Constant { struct Time { let now = { round(NSDate().timeIntervalSince1970) } // seconds } }
Następnie możesz użyć
let timestamp = Constant.Time.now()
źródło
Szybki:
Mam UILabel, który pokazuje TimeStamp na podglądzie aparatu.
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; } }
Konfiguruję przycisk ustawień, aby wyzwolić 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)
}
źródło
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);
Dziennik będzie wyglądał następująco: nazwa pliku: / Users / Shared / Recording_06-28-2016 12:53: 26.mov
źródło
Jeśli potrzebujesz znacznika czasu jako ciągu.
time_t result = time(NULL); NSString *timeStampString = [@(result) stringValue];
źródło
Aby uzyskać znacznik czasu z NSDate Swift 3
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 }
Używać
źródło