开发者

How to add Events in iPhone calendar application using our iphone application.

开发者 https://www.devze.com 2023-03-08 08:35 出处:网络
How to add Event in iPhone Calendar. I just want to add events in i开发者_如何转开发Phone calendar using my application and wants to set pushnotification for perticuler event. Please help me out on th

How to add Event in iPhone Calendar. I just want to add events in i开发者_如何转开发Phone calendar using my application and wants to set pushnotification for perticuler event. Please help me out on this. Thank you.


To create an Event programmatically, you would use EventKit, more specifically the provided EKEventEditViewController. See the Apple documentation for an explanation and sample code.

In iOS 4.0+, you would also be able to access that controller without writing any EventKit code. To do that, use a UITextView configured with dataDetectorTypes = UIDataDetectorTypeCalendarEvent. The UITextView will automatically convert strings representing formatted dates, days of the week, etc. - to clickable URLs that handle the creation of events.

Please refer to the Apple iOS documentation for the rest of your question. If there is anything specific that doesn't work in your case, please post some code, show us what you have tried already, etc.


you can use this code

EKEventStore *es = [[EKEventStore alloc] init];
EKEventEditViewController *controller = [[EKEventEditViewController alloc] init];
controller.eventStore = es;
controller.editViewDelegate = self;

[self presentModalViewController:controller animated:YES];
[controller release];
0

精彩评论

暂无评论...
验证码 换一张
取 消