我正在使用IOS日曆,我想知道如何檢測日曆的來源。我的意思是檢測日曆是從Facebook,谷歌等獲取EKCalendar的源/名稱
我使用的日曆類型,但是,它不是足夠詳細
if (type == EKCalendarTypeLocal) {
typeString = @"local";
} else if (type == EKCalendarTypeCalDAV) {
typeString = @"calDAV";
} else if (type == EKCalendarTypeExchange) {
typeString = @"exchange";
} else if (type == EKSourceTypeMobileMe) {
typeString = @"MobileMe";
} else if (type == EKCalendarTypeSubscription) {
typeString = @"subscription";
} else if (type == EKCalendarTypeBirthday) {
typeString = @"birthday";
只需添加更多的日期,我使用
for (EKCalendar *thisCalendar in calendars) {
EKCalendarType type = thisCalendar.type;
EKSource* source = thisCalendar.source;
DLog(@"title %@", source.title);
DLog(@"Src Id %@ and title %@", source.sourceIdentifier, thisCalendar.title);
DLog(@"Id %@", thisCalendar.calendarIdentifier);
但這不是真正的描述性,因爲日曆iOS內置應用程序 有什麼想法?
是我做的,但只得到這樣的Src標識6DFC6A45-2C16-4D4D-B96E-A98D50675706和產權工作 – Agus