12時間形式に変換しようとしてNSString
います。NSDate
(iOS 6)
コード :
NSString *Bdt = @"05/23/2012 08:00 AM"
NSDateFormatter *df = [[[NSDateFormatter alloc] init] autorelease];
[df setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];
[df setDateFormat:@"MM/dd/yyyy hh:mm a"];
NSDate *bd = [df dateFromString:Bdt];
NSLog(@"%@",bd);
出力:
2012-05-23 08:00:00 +0000 2012-05-23 08:00 AM である必要があります
コードの何が問題なのですか?
ありがとう