ios - saveEvent 返回 "No calendar has been set"

标签 ios ekevent ekeventkit ekeventstore

我正在尝试将事件从我的应用程序保存到日历中。 我的代码适用于 iOS 7,但在 iOS 6 上,它返回没有设置日历。

在 iOS 7 上,应用程序提示用户授予对日历的访问权限。 但是对于 iOS 6 没有出现这样的提示。虽然应用程序在设置->隐私->日历中被授予访问权限。

是的,我已经实现了 requestAccessToEntityType:completion:

这是我的代码片段

EKEventStore *objStore = [[EKEventStore alloc]init];

if ([objStore respondsToSelector:@selector(requestAccessToEntityType:completion:)])
{
    // iOS 6 and later
    [objStore requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error)
    {
        dispatch_async(dispatch_get_main_queue(), ^{
            if (granted)
        {
            // code here for when the user allows your app to access the calendar
            EKEvent *calEvent = [EKEvent eventWithEventStore:objStore];
            calEvent.title = mstrTitleEvent;
            calEvent.startDate = self.dateToBeSet;
            calEvent.endDate = self.dateToBeSet;
            calEvent.calendar = objStore.defaultCalendarForNewEvents;

            EKAlarm *objAlarm = [EKAlarm alarmWithAbsoluteDate:self.dateToBeSet];
            [calEvent addAlarm:objAlarm];

            NSError *error;
            BOOL _bStatus = [objStore saveEvent:calEvent span:EKSpanThisEvent commit:YES error:&error];

            UIAlertView *alertV;

            if(_bStatus)
            {
                alertV = [[UIAlertView alloc]initWithTitle:@"Congratulations" message:@"Saved To Calendar" delegate:nil cancelButtonTitle:@"Right On!" otherButtonTitles:nil];
                [alertV show];
            }
            else
            {
                alertV = [[UIAlertView alloc]initWithTitle:@"Alert" message:[NSString stringWithFormat:@"Error saving to calendar, with error %@.",[error localizedDescription]] delegate:nil cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
                [alertV show];
            }
        }
            else
        {
            // code here for when the user does NOT allow your app to access the calendar
            UIAlertView *alertV = [[UIAlertView alloc]initWithTitle:@"Alert" message:@"Please grant access to the calendar, and try again later." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
            [alertV show];
        }
        });
    }];

最佳答案

刚刚设法以某种方式找到了解决我的问题的方法。 我不得不从一个页面导航到另一个页面,因此发布了两个页面的链接。

首先-> https://discussions.apple.com/message/16497282#16497282

然后,从那里到 -> https://discussions.apple.com/message/16479587#16479587

我必须进入设置>iCloud> 并打开日历。 之后,我尝试尝试并运行我的代码,它再次运行良好。

如果您遇到类似问题,请尝试此操作。

我在 iPad 2 上工作,并且设备上安装了 iOS 6.1.3。

关于ios - saveEvent 返回 "No calendar has been set",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23734436/

相关文章:

ios - 有什么方法可以检索 iPhone 的显示亮度和光传感器值?

iphone - EKEvent 在 iOS5 中损坏?

iphone - iPhone模拟器日历是否为事件正确存储 "availability"?

ios - 根据截止日期对 EKReminder 进行排序

ios - 加密 iOS Xcode

ios - swift 3.0 中的 Firebase 数据解析问题

iphone - 获取 AVAssetReader 的示例数据

cocoa - 事件的发生日期与开始日期有何不同?

iOS - 删除 Recurring EKEvent,事件再次出现

ios - 如何在 iOS 中以编程方式在日历中添加事件的超链接而不显示实际 URL?