In my iOS calendar app When Request privacy from EKEventstore For Event all thing done well.But when allow app to access Reminders All calendar disappear and when try to get calendars nil returned.
This issue in iOS 7.1 only.
Steps to produced:
1-Reset all Privacy from settings.
2-Run calendar app.
3-Request Privacy to access Events.
4-get calendar from store work correctly.
5-Request Privacy to Access Reminders.
6-Kill app and reopen it.
6-get calendar doesn't work correctly and return nil.
Anyone can help me ?
Could you please check how many calendars and reminders list you have, if they are more than 100, then the event store will stop working correctly.
For more information check this from apple: iCloud: Limits for Contacts, Calendars, Reminders, and Bookmarks
Related
i have an application that updates events in google calendar. however user can also open google calendar via browser and update events from there. is there any way that my app can get a notification if someone else makes changes to the calendar?
Our requirement was to add an invitee to an EKEvent.
As written in the Apple EventKit documentation it is not allowed to add meeting invitees programmatically since those properties of an EKEvent are read-only.
We tried another way to create an .ics file and add it the calendar programtically. But with this approach we are not able to create attendees to an event hosted in an Exchange account. Where as other accounts like GMail are working fine.
I have no experience in publishing apps on the App Store. I have created an app from Xcode 6, archived it, validate it and submitted to iTunes Connect. While is pending for being reviewed I decided to try the new apple TestFlight functionality.
Following the tutorial video (https://itunesconnect.apple.com/downloads/Documentation/TestFlight-v09-iTC-Export-sw.mov) I have performed these steps:
I have added another apple ID that I own under the User & Role section giving him a Technical role
I have accepted the iTunes Connect email invitation for that user
I have selected my app, then my build and enabled it for TestFlight
I went under the Internal Testers section and invited the user
Still the status for the user is not being displayed as invited and I didn't received any email invitation to test the build.
As you can see I also tried to invite my own apple id account, the status changed to invited but I didn't received any email...
In addition refreshing the page brings me back to no invitation at all for the new user:
Am I doing something wrong? I fear I am missing a step during the build submission or maybe that since the app is reviewing for the app store I cannot invite beta testers...
I have also tried to toggle again the testflight build toggle (as suggested here: https://stackoverflow.com/a/26579651/2701348) but nothing changed.
The problem with inviting an internal tester is that you cannot have an internal and external tester with the same apple ID.
Although deleted and recreated the user in user roles I still had the same problem. When I removed the duplicate email from External Testers and went back to Internal Testers, the invite was sent.
I managed to solve the issue. To make the invitations work again you must:
Under Internal Testers and Users and Roles: delete the users you are not able to invite
Under Users and Roles invite them again to join iTunes Connect
Enable them as testers
Go to your app build and invite them again as internal testers
Hope this might be useful.
I am creating a Mac OS X application to use Notification Center. Some notifications should remain on the screen until the user interacts with them, and others should disappear shortly after displaying.
The NSUserNotificationAlertStyle key and changing System Preferences allow changing between banners and alerts. However, both approaches change all the notifications sent from my application.
Can I send some notifications as alerts and others as banners? If so, how?
NSUSerNotificationAlertStyle is the only way the developer can set the default notification style for the application, and it sets the style for all notifications from that app.
If you think it's really important for you to have 2 different kinds of notifications you can work around the problem by having a hidden helper application with a different NSUserNotificationAlertStyle than the main app.
Remember though you set the default notification style, but the user can change it whenever he wants in the notification center prefs, making your helper app useless.
No. The different notification types exist so that the user may select what he/she prefers, not so that the developer can.
If you feel your app should have this ability, you should file an enhancement request at http://bugreporter.apple.com and let Apple know.
I am trying to write an application that can manage meetings, I want to be able to send an vcal/ical event via email and have the recipient be the organizer. I have populated the organizer field with the recipients email address which does not have the required result. (in outlook 2010 at least) It appears in their calendar but it does not acknowledge them as the organizer so when trying to move the event a message is displayed notifying them that they are not the organizer.
You could try the solution in the answer found here:
Change organizer of outlook AppointmentItem via VSTO
You could also create appointments directly into the intended organizer's calendar using the GetSharedDefaultFolder method, as long as you have delegate access to their mailbox.
Otherwise I do not believe there is any way to remotely set the organizer of a meeting.