I am using Event Kit to read and create events. I want to be able to add attendees to such events. But as described in documentation we cannod do that with Event Kit framework:Event Kit provides limited access to a user’s Calendar database; it does not include everything that would be desired for implementing a full-featured calendar or reminder app, such as adding attendees or accounts (https://developer.apple.com/library/ios/documentation/DataManagement/Conceptual/EventKitProgGuide/Introduction/Introduct…)I see that some apps, like Google Calendar, can do that. I think that they are using CalDAV protocol, but I could not find anythink about that (documentation, tutorials, other helpfull resources) and I don't know where to start.Any help would be welcome.Thanks
Search results for
calendar
1,863 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Since upgrading our test devices to iOS 9b5 random meeting organizers recieve several (3-9) meeting acceptance notices from the accounts on these devices daily. Both for meetings in the future and meetings that have already passed.On the backend it is mailboxes on Office 365. Prior to, or if I revert the device to iOS 8.4.1 the problem does not happen.If I go in to the account settings for O365 and turn off the calendar sync the issue goes away (as you would expect).If I use another app to get calendar information that does not leverage the built-in iOS calendar account for O365 (Fantastical does this) like the MS Outlook app (which does not do this) the problem does not return.Any ideas or is anyone else seeing this? I have enough experience with the iOS betas to know I cannot fix it or expect Apple to fix it except perhaps in the GM version.Thank you,Chris 😟
I had no luck until turning off my keychain and then turning off and on Calendar - and THEN clearing out everything in my V3 folder.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I was able to unhide my library folder, but didn't find any Join.Me files in the appication support folder. Grr. I'm still getting the popup every time I open my calendar even though I've deleted the join.me program itself.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
We've moved to CFCalendar methods awhile back after a lot of the CF date/time functions were deprecated - all except one: CFAbsoluteTimeGetWeekOfYear.The reason is that CFAbsoluteTimeGetWeekOfYear works and so far, CFCalendarGetOrdinalityOfUnit doesn't.CFCalendarGetOrdinalityOfUnit(calendar, kCFCalendarUnitWeekOfYear, kCFCalendarUnitYear, time)This is what we're doing and it gives the wrong info. The ISO standard mandates the week number be based off Monday being the first day of the week and so January 1st 2017 should be week 53, but the above gives us 1. There are many examples I can come up with here.My guess is that perhaps there is a different method we should be using for the correct number, but its just not plain and obvious.
I am able to create a search UI like the iOS 7/8 calendar app (search icon drops down UISearchBar) by following the example in UICatalog of calling presentViewController: on my UISearchController. The problem is I can't seem to find a way to push a VC onto my stack after selecting a search result. In Apple's example there is no navigation controller to push onto besides the one that presented the UISearchController but I can't push onto it since it is presenting the UISearchController. So I tried to wrap my results view controller in a UINavigationController and push from there. It looks like it is going to work but once I select a result it pushes about halfway then the results disappear and I just see the dimmed view of the UISearchController. Also wrapping the UISearchController in a nav controller and presenting it didn't work either. Any ideas?
Well we're now on developer beta 8, a week away from the Apple press conference which should announce the final version of El Capitan for launch, and the Exchange calendar still does not work. It has never worked since day 1 DP1 and bug reports have not been responded to at all.Is it just me, is everyone else who had exchange calendar issues now able to access it?If this isn't fixed by launch, I'm gonna have to roll back to Yosemite on my work computer. 😟
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Hi Max,i had a little difficulty performing the log. Sorry for all the threads:Sep 1 07:07:36 localhost bootlog[0]: BOOT_TIME 1441105656 0Sep 1 07:08:24 localhost syslogd[47]: Configuration Notice: ASL Module com.apple.AccountPolicyHelper claims selected messages. Those messages may not appear in standard system log files or in the ASL database.Sep 1 07:08:24 localhost syslogd[47]: Configuration Notice: ASL Module com.apple.Accounts claims selected messages. Those messages may not appear in standard system log files or in the ASL database.Sep 1 07:08:27 --- last message repeated 1 time ---Sep 1 07:08:24 localhost syslogd[47]: Configuration Notice: ASL Module com.apple.authd sharing output destination /var/log/asl with ASL Module com.apple.asl. Output parameters from ASL Module com.apple.asl override any specified in ASL Module com.apple.authd.Sep 1 07:08:24 localhost syslogd[47]: Configuration Notice: ASL Module com.apple.authd sharing output destination /var/log/system.log with ASL Module com.apple.asl. Outp
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I had some trouble with Handoff on my mid 2012 MacBook Pro, but it has been working well with the latest beta. My Mac Pro 5,1 has been modified with an updated WiFi BTLE card and has always supported Handoff well since ealry Yosemite.Since the Beta was working so well on the Macbook Pro, I updated the Mac Pro to the latest beta. After all updates, the General Preferences panel shows Handoff enabled. The Mac Pro was pushing messages from apps to the other systems (Safari pages, calendar stuff etc.,) but it would not show incoming data from other systems (iOS 9 or OS X.)After I logged out of iCloud and logging back in, it now does not display any Handoff activity - incoming or outgoing.What is the process to flush the iCloud and handoff data from the system so I can restart the connection process?Any other ideas to restart the process?I guess, I could try another local account.
Exchange calendar is still broken for me (15A279b). Exchange mail has been working since several DPs ago.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
My iCloud calendars no longer appear on my iOS 9 phone - The only calendar that 'appears' is Birthdays. All iCloud calendars are fine in BusyCal and iCloud.com.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
September, 3rd El Capitan Beta 6 — still no solution Mail, Calendar, Jabber, etc. linked to Exchange account don't work.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Hi, I want to access to reminders saved into Reminders.app, with the following code I have as result a list of events! What's wrong?-(NSMutableArray*)getReminders { NSMutableArray *result = [[NSMutableArray alloc] init]; EKEventStore *eventStore = [[EKEventStore alloc] init]; NSCalendar *calendar = [NSCalendar currentCalendar]; NSDate *now = [NSDate date]; NSDate *startDate = [calendar dateBySettingHour:0 minute:0 second:0 ofDate:now options:0]; NSDate *endDate = [calendar dateBySettingHour:23 minute:59 second:59 ofDate:now options:0]; NSPredicate *predicate = [eventStore predicateForEventsWithStartDate:startDate endDate:endDate calendars:nil]; NSArray *events = [eventStore eventsMatchingPredicate:predicate]; if ([eventStore respondsToSelector:@selector(requestAccessToEntityType:completion:)]) { [eventStore requestAccessToEntityType:EKEntityTypeReminder completion:^(BOOL granted, NSError *error) { if ( granted ) { for (EKReminder *currentReminder in events) { NSLog(@reminder: %@, cu
I find this list of things a user has to do to prevent interuptions of a recording in an audio app appaulling. From AVSession Docs:Providing Guidelines to the UserA user may not want an app to be interrupted by a competing audio session—for instance, when running an audio recorder to capture a presentation.There is no programmatic way to ensure that an audio session is never interrupted. The reason is that iOS always gives priority to the phone. iOS also gives high priority to certain alarms and alerts—you wouldn’t want to miss your flight now, would you?The solution to guaranteeing an uninterrupted recording is for a user to deliberately silence their iOS device by taking the following steps:In the Settings app, ensure that Airplane Mode turned on, for devices that have an Airplane mode.In the Settings app, ensure that Do Not Disturb is turned on.In the Calendar app, ensure that there are no event alarms enabled during the planned recording period.In the Clock app, ensure that no clock alarms are en
This isn't the error!!! Because when I iterate over events array, into completion block, the code print into the console the events into calendar and not the Reminders of the reminders.app!!! Please read my question!
Topic:
App & System Services
SubTopic:
General
Tags: