- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
美好的一天!我通过 UIActivityItems 使用函数“将事件保存到日历”。在该函数中,我创建了新日历并将事件添加到该日历:
EKEventStore* eventStore = [[EKEventStore alloc] init];
// Get the calendar source
EKSource* localSource;
for (EKSource* source in eventStore.sources) {
if (source.sourceType == EKSourceTypeLocal)
{
localSource = source;
break;
}
}
if (!localSource)
return;
EKCalendar *newCalendar = [EKCalendar calendarForEntityType:EKEntityTypeEvent eventStore:eventStore];
calendar.source = localSource;
calendar.title = @"New Calendar";
NSError *errorCalendar;
[eventStore saveCalendar:newCalendar commit:YES error:&errorCalendar];
EKEvent *event = [EKEvent eventWithEventStore:eventStore];
event.title = @"Title";
event.startDate = startDate;
event.endDate = endDate;
[event setCalendar:newCalendar];
// and etc.
它的工作原理。但每次下一次它都会再次创建名为“New Calendar”的新日历。如何检查具有该名称的日历是否已存在?以及如何更改日历类型?生日之类的。
最佳答案
首先,您需要在应用的整个生命周期内使用 EventStore
的单个实例,according to Apple .
因此我建议将 eventStore
设为 View Controller 的属性:
@property (nonatomic, retain) EKEventStore *eventStore;
在你的 viewDidLoad:
self.eventStore = [[EKEventStore alloc] init];
现在您可以在执行任何操作之前检查正在读取和写入的同一 eventStore
实例:
-(BOOL)checkForCalendar {
//get an array of the user's calendar using your instance of the eventStore
NSArray *calendarArray = [self.eventStore calendarsForEntityType:EKEntityTypeEvent];
// The name of the calendar to check for. You can also save the calendarIdentifier and check for that if you want
NSString *calNameToCheckFor = @"New Calendar";
EKCalendar *cal;
for (int x = 0; x < [calendarArray count]; x++) {
cal = [calendarArray objectAtIndex:x];
NSString *calTitle = [cal title];
// if the calendar is found, return YES
if (([calTitle isEqualToString:calNameToCheckFor]) {
return YES;
}
}
// Calendar name was not found, return NO;
return NO;
}
-(void)saveNewEvent {
// If the calendar does not already exist, create it before you save the event.
if ([self checkForCalendar] == NO) {
// Get the calendar source
EKSource* localSource;
for (EKSource* source in eventStore.sources) {
if (source.sourceType == EKSourceTypeLocal)
{
localSource = source;
break;
}
}
if (!localSource)
return;
EKCalendar *newCalendar = [EKCalendar calendarForEntityType:EKEntityTypeEvent eventStore:eventStore];
calendar.source = localSource;
calendar.title = @"New Calendar";
NSError *errorCalendar;
[eventStore saveCalendar:newCalendar commit:YES error:&errorCalendar];
}
EKEvent *event = [EKEvent eventWithEventStore:self.eventStore];
event.title = @"Title";
event.startDate = startDate;
event.endDate = endDate;
[event setCalendar:newCalendar];
// and etc.
}
关于ios - 检查 EKCalendar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16675838/
在我的应用程序中,我有一个开关,允许用户将某些事件放入他们的议程中。我这样处理: @IBAction func putInAgenda(_ sender: UISwitch) { le
我正在构建一个小型日历应用程序,用户可以在其中选择事件应该输入到哪个日历中。因此,用户从设置模式中的选择器 View 中选择他们选择的日历,然后当他们输入新事件时,我应该能够获取该日历对象以某种方式创
我现在开发一个显示 iCloud EKCalendar 列表的 iOS 应用程序。我的swift代码可以得到一组iCloud EKCalendars,但是顺序总是不一样。谁能给我一些建议,让我整理一下
美好的一天!我通过 UIActivityItems 使用函数“将事件保存到日历”。在该函数中,我创建了新日历并将事件添加到该日历: EKEventStore* eventStore = [[EKEve
我正在尝试使用以下方法访问新提醒的默认日历: EKCalendar.defaultCalendarForNewReminders() 此函数应返回可选的 EKCalendar ( doc page )
我是来自乌克兰的新开发者,我从 Objective-C 开始了我的道路。 我有以下问题:我创建了一个包含几个事件的 EKCalendar。我需要事件变得可重复,例如每天、每月等。 最佳答案 很高兴在我
通过使用 EventKit,我可以将事件添加到 iphone 日历,我可以使用 EkCalendar 创建一个新日历。但现在需要删除 iphone 日历中的单个事件。我怎样才能做到这一点。提前致谢 f
我在我的应用程序中使用 EventKit,想知道日历属于哪个帐户。 iPhone 日历应用程序显示所有按帐户分组的日历,帐户名称例如“myname@me.com”或“Gmail myname”。我可以
有没有办法对日历或提醒进行排序?我还没有找到 sortIndex 属性或类似的东西......提醒应用如何对项目进行排序? 最好的问候 最佳答案 目前在 iOS 6 SDK 中没有公开访问提醒应用程序
我想在我的应用程序中插入事件,以便可以在 iPhone Calendar.app 中查看它们。但由于我不想将用户事件与应用程序中的事件混合,因此我想创建一个像“MyApp Events”这样的 EKC
我正在尝试使用 EKSourceTypeLocal 创建日历来源。遍历 self.eventStore.sources , 找到带有 sourceType == .Local 的那个并尝试用它创建一个
如何更改日历的名称?我有: EKCalendar *cal; cal=[store calendarWithIdentifier:@"5F9A5BE0-03A9-4FE8-BD1E-2647F39E2
我正在尝试在 OS X 上创建一个新日历。我无法在我的日历中显示日历 (newcalendar)。我运行代码,打开我的日历,但它没有显示。有谁知道为什么?这是我的 AppDelegate.swift
我想在 iOS 上创建订阅日历,但将其存储在 iCloud 中,以便在用户的其他设备上可见。我看到了如何创建 iCloud EKCalendar,但我看不到任何方式来告诉它订阅的 url 是什么。 这
我有一个应用程序,我想在其中安排一些事件。所以我想为我的应用程序创建一个新日历,如果它尚不存在并且它在添加新事件时确实引用了它。 最佳答案 这是在 iOS 5 上使用 EventKit 框架完成的:
我在创建 EKCalendar 时遇到问题,一切看起来都不错,但当我去列出我的日历时,它没有显示。我还去查看我的日历应用程序中的日历列表,但它不存在。有什么想法吗? 这是我用于创建日历的按钮代码: -
我有一个 NSArray,里面有一堆 EKCalendar 对象。我需要按字母顺序对它们进行排序。我是选择器的新手,但我想我需要类似的东西...... NSArray *array = [otherA
当我的应用程序首次运行时,我试图在 EKEventStore 中创建一个日历。我找到了 this tutorial但我对 Objective-C 的了解还不够多,无法将其转换为 Swift,而且根据我
我遵循了这个答案:how do I create a new EKCalendar on iOS device? 但是我创建的日历没有出现在 iPhone 的 calendar.app 中?应该吗?
给定任何 EKCalendar,我如何检查这个日历是否是 Facebook 日历? Facebook 日历可以是 Facebook 事件日历或 Facebook 生日日历。 最佳答案 不幸的是,如果不
我是一名优秀的程序员,十分优秀!