How can I obtain the current time in HH:MM开发者_高级运维:SS am/pm format?
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"hh:mm:ss a"];
NSLog(@"Current Date: %@", [formatter stringFromDate:[NSDate date]]);
[formatter release];
The format of the string in setDateFormat
is based on ISO-8601, http://en.wikipedia.org/wiki/ISO_8601#Dates
Swift 3 Version:
let formatter = DateFormatter()
formatter.dateFormat = "hh:mm:ss a"
print("Current date: \(formatter.string(from: Date()))") // -> Current date: 08:48:48 PM
There's also a new site since this original answer that helps writing these format strings. Aptly named... http://nsdateformatter.com
See the NSDateFormatter
class and the Data Formatting Guide. Don’t ever do these kind of things by hand, you won’t get the details right.
http://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSDate_Class/Reference/Reference.html#//apple_ref/occ/instm/NSDate/descriptionWithCalendarFormat:timeZone:locale:
精彩评论