由于我安装了 xCode 7 beta2 + Swift 2.0,我的应用程序出现了一些错误。例如,我收到以下错误
“不能使用类型为 '(EKEntityType, 完成:(Bool, NSError!) -> _)' 的参数列表调用 'requestAccessToEntityType'
在这部分代码中:
eventStore.requestAccessToEntityType(EKEntityType.Event,
completion: {(granted: Bool, error:NSError!) in
if !granted {
print("Access to store not granted")
}
})
还有这个错误:
无法使用类型为“(NSDate,endDate:NSDate,日历:[AnyObject])”的参数列表调用“predicateForEventsWithStartDate”
在这部分代码中:
calendarsPrueba.addObject(calendarWithName("US Holidays")!)
var predicate2 = eventStore.predicateForEventsWithStartDate(startDate, endDate: endDate, calendars: calendarsPrueba as [AnyObject])
有人知道如何解决这个问题吗?没有关于此的 Apple 文档