我需要知道如何获取我的字符串:16/03/2012 1:15 PM
进入NSDate以添加到日历。
该格式的正确格式是什么?
干杯!
答案 0 :(得分:1)
您需要将NSString转换为NSDate:
NSString* myStringDate = @"16/03/2012 1:15 PM";
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"dd/MM/yyyy hh:mm a"];
NSDate *resultDate = [df dateFromString: myStringDate];