eventkit

    0熱度

    1回答

    這段代碼旨在在Mac上的iCal中打印我的默認日曆,但返回(null)。我是否需要更改代碼或設置中的某些內容才能訪問我的日曆?我在Xcode 4.5.2中運行這個。 #import <Foundation/Foundation.h> #import <EventKit/EventKit.h> int main(int argc, const char * argv[]) {

    2熱度

    3回答

    我想用我的日曆日期像下面添加事件: - (void)viewDidLoad { [super viewDidLoad]; self.navigationItem.title = @"Calendar"; EKEventStore *eventStore = [[EKEventStore alloc]init]; EKEvent *event = [EKEvent eventWithE

    0熱度

    2回答

    如何在沒有權限時顯示錯誤? (例如,「你不要讓我們持續寫日曆。」)。 這是我的代碼: if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"6.0")) { EKEventStore *es = [[EKEventStore alloc] init]; [es requestAccessToEntityType:EKEntityTypeEvent com

    0熱度

    1回答

    我希望得到通知時,我的應用程序在背景: [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(calendarChanged:) name:EKEventStoreChangedNotification object:nil]; 我試圖實現它,但(calendarChanged:)永遠不會叫?!

    7熱度

    2回答

    我知道有一個API以編程方式添加提醒。但是有提醒的視圖控制器嗎?我查看過EventKitUI框架,但我不確定EKEventEditViewController是用於提醒,還是僅用於日曆項目。 像蘋果提供的短信,郵件,日曆,Twitter,Facebook的。

    0熱度

    1回答

    一個呈現視圖使用EventKit我的標題字符串中所提出的觀點不顯示事件時標題所暗示的,它只是空白 EKEventStore *es = [[EKEventStore alloc] init]; EKEventEditViewController *controller = [[EKEventEditViewController alloc] init]; contr

    1熱度

    1回答

    當使用Eventkit框架添加事件時,我試圖設置提前一年的開始日期。 到目前爲止,我有這麼看着,做了谷歌搜索,並試圖 controller.event.startDate = [[[NSDate alloc] initWithTimeInterval: 525960]; controller.event.endDate= [[NSDate alloc] init]; 我得到一個錯誤說NSDa

    6熱度

    3回答

    我要創建我的應用程序的提醒,所以我創建了一個提醒(EKReminder),並設置了一個警鐘: NSTimeInterval timeInterval = 100000; NSDate *alarmDate = [NSDate dateWithTimeIntervalSinceNow:timeInterval]; EKAlarm *alarm = [EKAlarm alarmWithAbsolu

    0熱度

    1回答

    我拉我的頭髮試圖瞭解EventKit提醒的基礎知識。我試圖重新這裏的教程:http://www.techotopia.com/index.php/Using_iOS_6_Event_Kit_to_Create_Date_and_Location_Based_Reminders 但是當我嘗試建立的項目,我在 無論是在IBAction爲「爲方法聲明中缺少上下文中的」我的.m文件,並在CreateRem

    1熱度

    1回答

    我想通過新的iOS方法calendarItemWithIdentifier來查找日曆事件。我無法使用eventWithIdentifier,因爲在事件與服務器同步後標識符被更改。 calendarItemIdentifier不是。 但calendarItemWithIdentifier總是返回(空)。 EKEventStore *store = [[EKEventStore alloc] init