Reputation: 183
I am trying to fetch my default calendar view of iPhone in my viewcontroller .
Does it Possible ?
Tab on button and open will worked([[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"calshow://"]]; ) and some Third party will also worked !!!!!!
Upvotes: -1
Views: 3214
Reputation: 58087
Your question can be understood one of three ways:
calshow://
which can do that. Based on my quick search, I'm unsure if Apple actually allows this.Disclosure: I wrote MBCalendarKit.
Upvotes: 3
Reputation: 2379
You can find it on Cocoapods on this link or you can get it on Github at this link. This little library is unlike the others in that its configurability is up to the developer. You can check out some of the calendars that its users have developed for it here. And you can see its setup tutorial here. Video tutorials here. It also as a demo that you can download right from GitHub. Btw, If you have never heard of cocoapods, then invest 10 mins of your time to learn about it. It is the easiest way to integrate 3rd party libraries to your iOS projects.
Other top calendars I have compared it with:
Upvotes: 1