我想为我的整个iPhone应用程序设置12小时时钟格式,无论用户是否将iPhone设备时钟格式设置为12小时或24小时。 请告知如何实现这一目标。
答案 0 :(得分:0)
我将我的NSDateFormatter对象的语言环境设置为en_US,并以12小时格式显示时间。
NSLocale *uslocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
[dateFormatterForDisplay setLocale:uslocale];
[uslocale release];