如何在iPhone中以编程方式检测设备日历类型?

时间:2011-12-22 05:42:54

标签: iphone objective-c calendar locale

我正在开发一款iPhone应用,其中应用需要将一些数据发送到服务器。 但问题是,如果设备日历是非格里高利的,则年份的日期样式不同,因为哪个应用程序无法将数据添加到服务器。 有没有办法检测设备的当前日历类型?

1 个答案:

答案 0 :(得分:3)

您可以检查设备的当前区域设置。

[NSLocale currentLocale] [NSLocale systemLocale]

您还可以获取系统当前日历

[NSCalendar currentCalendar]