0

我在我的项目中使用日期选择器,并且在将格式属性应用为 hh:mm 后,我将选定的日期设置为 24 小时格式。我可以通过使用条件转换它来获得 12 小时格式的日期,但我想知道一些直接的方法来从带有 AM 、 PM 的日期选择器中获取 12 小时格式时间。如果有人知道最短的方法,请通过您的回答指出我。谢谢!

4

1 回答 1

5

我为此做了一个方法,试试看

-(NSString*)getTimetoFill
{
 NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init];
 [outputFormatter setDateFormat:@"h:mm a"];

 NSString *timetofill = [outputFormatter stringFromDate:datepicker.date];
 return timetofill;
}
于 2012-07-13T05:41:19.453 回答