The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
16 views

My EKEvent is not being saved on my iphone 5 ios 6.1

My EKEvent is not saving in my iphone 5 ios 6.1 but its saved on my ipod 6.0. and When I update my event and save it , the event is deleted. Please help me fix it. Its it a ios bug? or just in the ...
0
votes
1answer
16 views

EKEventStore authorizationStatusForEntityType: not recognized?

I'm trying to check if my app was granted access to the user's Reminders by using: EKEventStore *store = [[EKEventStore alloc] init]; EKAuthorizationStatus status = [store ...
0
votes
0answers
19 views

How can I programmatically make an iCal event that will open a file as an alarm?

I am working on an OSX app that (when complete) will create an event in iCal at a given date and time. I would like the alarm for the created event to open a file but I cannot figure out how to make ...
0
votes
0answers
14 views

EventEditviewController not adding event for default calender

In my application I'm adding a calendar entry with EKEventEditViewController EKEvent *event = [EKEvent eventWithEventStore:self.eventStore]; event.title = self.selectedPost.postTitle; ...
0
votes
0answers
22 views

remove recurrenceRule of ekreminder with picker view

I thank you in advance. I'm really looking forward to your help., I am trying to handle recurrence rule of a EKReminder with a UIPickerView. Everything works fine except removing the rule. My ...
1
vote
0answers
32 views

How to detect which EKevent was changed

I got the problem I need to know when Events in my EventStore is changed, so for this case i use EKEventStoreChangedNotification but this notification return to me incomprehensible dictionary in ...
0
votes
0answers
53 views

Presenting EkEventViewController getting delayed

I want to present eventViewController to save events to local iPhone calendar.I am presenting the controller by using this code but presenting controller takes time to appear: ...
0
votes
1answer
87 views

Fetch all events in the iPhone Calendar with start date

I have application that remind patient about his/her appointment through button. if the patient click the button, I want to fetch all events in the patient calendar to check if the appointment is ...
0
votes
1answer
38 views

Fetch particular number of events from eventStore

We know that we can fetch events from EventStore using predicate. It contains start date and end date. Using this all the events that belong in this time period are fetched. However I am searching ...
0
votes
0answers
31 views

EKSourceTypeLocal disappear

I've a problem with the creation of a custom calendar. Using the method - (BOOL)saveCalendar:(EKCalendar *)calendar commit:(BOOL)commit error:(NSError *)error I can create the calendar inside the ...
0
votes
1answer
36 views

EventKit truncates result set when Time Zone Support is set to something other than the systemTimeZone

In the iOS Settings app, there is a setting called "Time Zone Support" (Settings > Mail, Contacts, Calendars > Time Zone Support). If this setting is OFF, there are no issues. Also, if this setting ...
0
votes
0answers
15 views

How to set EKRecurrence in iPhone

Now i am working on calendar app in iPhone.I added event programatically to default calendar in iPhone.I added successfully event.tite,event.location,event.alarms etc and also need to add ...
0
votes
0answers
43 views

App crashing due to event store changed?

I searched SO but didnt find any accurate answer for this. I am implementing Event Kit in my app.I am programatically implementing creation of events, But I am not specifying any calendar there.Then ...
0
votes
1answer
86 views

Get wrong time when adding an event to default calendar in iPhone

Now i am working on calendar application in iPhone. I am trying to add an event to default calendar in iPhone. In this case adding an event is successfully completed.But I can't add an event in proper ...
0
votes
1answer
100 views

How to get eventIdentifier from EKEvent store?

Now i am working on EKEvent mange in calendar application.I successfully add an event to eventStore.I need to get an event identifier from event store. I use the following code for access the ...
0
votes
1answer
34 views

How to Retrieve most recent completed, todo events from default calendar in iOS?

I am using default calendar in iOS5. I have to display most recent three completed activities, most recent three todo events.Those events can be any thing,means it can be any day. Can any one help ...
0
votes
0answers
17 views

Not able to add event in calender IOS 5.0

Below is my code Not able to add event to my calender in IOS 5.0 EKEventStore *eventStore = [[EKEventStore alloc] init]; EKEvent *event = [EKEvent eventWithEventStore:eventStore]; ...
0
votes
0answers
43 views

Can not access EKEventStore in OSx

I try to use EKEventStore with checking for document in web and reference. But still got below problem that seem like I can not access store in OSx. Mine is 10.7.5, please help suggest what I did ...
0
votes
0answers
38 views

Unable fetch Event data from EKEventstore dated after 5 years

Unable fetch Event data from EKEventstore dated after 5 years NSCalendar *calendar = [NSCalendar currentCalendar]; NSDateComponents *TenYearFromNowComponents = [[NSDateComponents alloc] init]; ...
0
votes
0answers
38 views

how to get Reminders on iOS5?

i see we can get calendar(EKCalendar) on iOS5 is EKEventStore.calendars ,iOS6 is [eventStore calendarsForEntityType:EKEntityTypeReminder],and get reminder list or remiders of calendar by create ...
0
votes
1answer
29 views

Grants Calendars Privacy access Issue

In my code I am handling all cases for ios 6 calendar privacy, if the user allows access to calendars, i called some method like following: [self performSelector:@selector(reloadData) ...
0
votes
1answer
103 views

Want to check whether EKEventStore permission exist on ios6 device

Want to check whether EKEventStore permission exist on ios6 device. EKEventStore *eventStore = [[UpdateManager sharedUpdateManager] eventStore]; if ([eventStore ...
0
votes
0answers
17 views

How to get the accounts of the calendars?

I get the calendars from the EKEventStore, how to get the accounts that the calendars belong to ?
1
vote
1answer
62 views

EKEvents Store object initialization

I want to create a EKEventStore object, and use it in different classes, Can I use different instances in each class ? or I have to create one EKEventStore instance using singleton pattern? Apple ...
0
votes
0answers
20 views

how to search event title from calendar

I need to search for event names and all the details for searched event should be displayed in the UITableView. The events should be searched from device calendar using EKEventStore.
0
votes
2answers
509 views

iOS EKEvent Store recreating iCloud calendars in a loop, won't save local.

I'm having a strange issue EKEventStore, iCloud and local calendars. If iCloud is enabled the Calendar is created and events are saved into the calendar as you would expect. if iCloud is turned off ...
0
votes
2answers
359 views

EKEvent for iOS 6 not working in any way possible

I have tried asking for permission with if([eventStore respondsToSelector:@selector(requestAccessToEntityType:completion:)]) { // iOS 6 and later ...
0
votes
1answer
200 views

predicateForEventsWithStartDate:endDate:calendars: EKEventStore doesn't work

i have saved 28 EKEvent in a EKCalendar in this range date: 2012-01-01 and 2013-01-18, the EKEvent are all stored and i can see it in the iOS Calendar on iCloud, then i want retrieve all this EKEvent ...
1
vote
1answer
192 views

predicateForEventsWithStartDate doesn't work

i'm trying to fetch event from a calendar, and i'm doing it using this method: predicateForEventsWithStartDate:endDate:calendars: but if i create a start date like this: NSString *str =@"3/15/1980 ...
0
votes
1answer
274 views

Retrieve EKEvent with specific title in EKEventStore

Hello i have saved some EKEvent in a specific calendar on iCloud, i want retrieve some of these EKEvent with a specific title, it's possible? i see that there is this method: eventsMatchingPredicate ...
3
votes
2answers
147 views

No sources in EKEventStore

I have a weird problem where my EKEventStore instance doesn't contain any sources. What it's strange is that in some of my phones works(Get the EKSourceTypeLocal and create the calendar) and in some ...
0
votes
1answer
204 views

Add calendar on iCloud on iOS

i'm trying to add a calendar to the iCloud EKSource, i'm trying to find the iCloud calendar in this way: EKSource *theSource = nil; for (EKSource *source in eventStore.sources) { if ...
2
votes
1answer
53 views

How to know if a calendar from Facebook

I have already fetch calendars from EKEventStore ,so is there a way to know if a calendar is from Facebook or not like the picture below. thanks
0
votes
0answers
185 views

How to add an Event programatically in iOS?

I am trying to add an Event to calender programatically. But I am getting an error. I am using iOS 6. Can you guys please take a look at following code and suggest me If I am missing anything. ...
0
votes
1answer
321 views

Get events from a specific calendar in IOS

I am trying to fetch events from a specific calendar only. On my iPhone I added a calendar "CalendarTest". What I want to do is in my app only fetch the events from that Calendar. I am doing the ...
0
votes
0answers
121 views

EKEventStore iOS 6 design pattern

I'm updating my Calendar code to iOS 6 and the new requestAccessToEntityType method is going to cause design changes. In my old code, I'd create my EKEventStore object on init, then use it across ...