ios6 – 日历已弃用

ios6 – 日历已弃用,第1张

概述if ([eventStore.calendars count] == 0) { NSLog(@"No calendars are found."); return NO; } EKCalendar *targetCalendar = nil; /* Try to find the calendar that the user asked
if ([eventStore.calendars count] == 0)       {         NSLog(@"No calendars are found.");        return NO;    } EKCalendar *targetCalendar = nil; /* Try to find the calendar that the user asked for */ for (EKCalendar *thisCalendar in eventStore.calendars){ line2     if ([thisCalendar.Title isEqualToString:paramCalendarTitle] &&         thisCalendar.type == paramCalendarType){        targetCalendar = thisCalendar;        break;     }}

第1行和第2行出错:“不推荐使用日历:在IOS 6中首先弃用”
怎么解决?

解决方法 相反,您必须使用以下方法.

- (NSArray *)calendarsForEntityType:(EKEntityType)entityType;NSArray *cals = [eventStore calendarsForEntityType: EKEntityTypeEvent];

并在line2中使用数组cals.

查看文档here

总结

以上是内存溢出为你收集整理的ios6 – 日历已弃用全部内容,希望文章能够帮你解决ios6 – 日历已弃用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1053901.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存