Добавить местоположение в календарь EKEvent IOS

Как добавить местоположение не только NSString, но и с широтой и долготой, чтобы оно отображало карту в календаре?

<EKCalendarItem>  

https://developer.apple.com/LIBRARY/ios/documentation/EventKit/Reference/EKCalendarItemClassRef/index.html

@property(nonatomic, copy) NSString *location;

Код:

 EKEventStore *store = [[EKEventStore alloc] init];
[store requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error) {
    if (!granted) { return; }
    EKEvent *event = [EKEvent eventWithEventStore:store];
    event.title = @"Event Title";
    event.startDate = [NSDate date]; //today
    event.endDate = [event.startDate dateByAddingTimeInterval:60*60];  //set 1 hour meeting
    event.notes=@"Note";
    event.location=@"Eiffel Tower,Paris"; //how do i add Lat & long / CLLocation?
    event.URL=[NSURL  URLWithString:shareUrl];
    [event setCalendar:[store defaultCalendarForNewEvents]];
    NSError *err = nil;
    [store saveEvent:event span:EKSpanThisEvent commit:YES error:&err];
    NSString *savedEventId = event.eventIdentifier;  //this is so you can access this event later
}];

пример

3 ответа

Недвижимость structuredLocation доступно на iOS 9, хотя документация EKEvent не упоминает об этом, но structuredLocation существует в общедоступном заголовочном файле EKEvent, и вы можете проверить его внутри Xcode. Не нужно использовать KVC, чтобы установить его после iOS 9.

Swift версия выглядит следующим образом:

let location = CLLocation(latitude: 25.0340, longitude: 121.5645)
let structuredLocation = EKStructuredLocation(title: placeName)  // same title with ekEvent.location
structuredLocation.geoLocation = location
ekEvent.structuredLocation = structuredLocation

Довольно странно, что для этого нет документации, но именно так вы добавляете геолокацию в событие календаря.

EKStructuredLocation* structuredLocation = [EKStructuredLocation locationWithTitle:@"Location"]; // locationWithTitle has the same behavior as event.location
CLLocation* location = [[CLLocation alloc] initWithLatitude:0.0 longitude:0.0];
structuredLocation.geoLocation = location;

[event setValue:structuredLocation forKey:@"structuredLocation"];

Возможно, вы сможете использовать setValue:ForKey: на EKEvent после создания EKStructuredLocation, ключом является "StructuredLocation"

Другие вопросы по тегам