在NSChineseCalendar在iOS 8.0中弃用之后,我如何才能获得ChineseCalendar?

时间:2014-09-26 19:36:51

标签: objective-c nscalendar nslocale

NSChineseCalendar在iOS 8.0中弃用后,如何才能获得ChineseCalendar?

文档

中的

  • NSChineseCalendar

中国日历的标识符。

适用于iOS 2.0及更高版本。

在iOS 8.0中不推荐使用。

1 个答案:

答案 0 :(得分:3)

如果你转到NSLocale.h中的密钥声明,你会看到这个......

FOUNDATION_EXPORT NSString * const NSChineseCalendar NS_CALENDAR_DEPRECATED(10_4, 10_9, 2_0, 7_0, "Use NSCalendarIdentifierChinese instead");

  

使用NSCalendarIdentifierChinese

如有疑问,请阅读文档!