EKCalendarItem
具有属性“ Location”,但它是一个NSString
。
新的iOS8功能显示了一个很好的事件映射,因此CLLocationCoordinate2D
必须附加一个EKCalendarItem
,对吗?
我在哪里可以找到此CLLocationCoordinate2D
?
最佳答案
这应该得到您所需要的:
for (EKEvent *calEvent in self.allMyEvents) {
EKStructuredLocation *location = (EKStructuredLocation *)[calEvent valueForKey:@"structuredLocation"];
if (location) {
}
}
关于calendar - 从日历事件(EKCalendarItem/EKEvent)检索经纬度(CLLocationCoordinate2d)位置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26070809/