EKEventStore *eventStore = [[UpdateManager sharedUpdateManager] eventStore];
if ([eventStore respondsToSelector:@selector(requestAccessToEntityType:completion:)])
{
[eventStore requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error)
{
if (granted)...
我想要求用戶有權將事件添加到他的日曆中。在授權後,當我想要例如刪除一個事件(在應用程序關閉並重新打開後的另一個會話中)時,是否需要再次詢問權限還是僅僅是一個想要的時間?requestAccessToEntityType - 一次還是每次?
如果是一次性事物,我可以在第一次午餐時將它放在ViewDidLoad中以「擺脫它」嗎?
這絕對沒有任何**與Xcode做什麼。 – 2013-01-11 12:23:21