Search results for

calendar

1,863 results found

Post

Replies

Boosts

Views

Activity

Add attendees to iCloud calendar event
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
1
0
553
Aug ’15
Daily Multiple Meeting Invite Acceptances
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 😟
0
0
781
Aug ’15
CFAbsoluteTimeGetWeekOfYear replacement - CFCalendarGetOrdinalityOfUnit is not correct
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.
Topic: UI Frameworks SubTopic: AppKit Tags:
0
0
128
Aug ’15
How do I present a UISearchController like the calendar app?
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?
Topic: UI Frameworks SubTopic: UIKit Tags:
3
0
3k
Aug ’15
Reply to DP3 Exchange woes continue
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:
Aug ’15
Reply to Display not awakening after Beta El Capitan 15A263e install
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:
Sep ’15
Handoff failing on one system with latest Beta
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.
7
0
1.3k
Sep ’15
Access to reminders
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
4
0
647
Sep ’15
On preventing interruptions of recordings.
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
2
0
3.3k
Sep ’15
Reply to Access to reminders
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:
Sep ’15