gpt4 book ai didi

ios - 崩溃 [NSCalendar calendarWithIdentifier :] on ios 7

转载 作者:行者123 更新时间:2023-11-28 21:15:01 36 4
gpt4 key购买 nike

当我的应用程序在 iOS 7 上运行时我的应用程序崩溃了

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[NSCalendar calendarWithIdentifier:]: unrecognized selector sent to class 0x3b67718c'

我正在我的项目中使用代码

- (instancetype)initWithLocale:(NSLocale *)locale andFirstWeekday:(NSUInteger)firstWeekday{
if (self = [super init]){
_calendar = [NSCalendar calendarWithIdentifier:NSCalendarIdentifierGregorian];
_calendar.timeZone = [NSTimeZone localTimeZone];
_calendar.locale = locale;
_calendar.firstWeekday = firstWeekday;
}
return self;
}

请有人帮助我解决这个问题,帮助我节省大量时间。谢谢。

最佳答案

[NSCalendar calendarWithIdentifier] 适用于 iOS 8+。

您可以改用初始化方法,这在所有 iOS 中都可以正常工作:

_calendar = [[NSCalendar alloc] initWithCalendarIdentifier: NSGregorianCalendar];

关于ios - 崩溃 [NSCalendar calendarWithIdentifier :] on ios 7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41587545/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com