Calendar like app in IOS
I am a beginner to iPhone Development. I want to develop a iPhone app which is like Native IOS Calendar.
The app should display the days and months in grid, list, month views...
I dont know how to dynamically change months and clear the previous months data...
In the native app, it changes the dates of months with animation... How to do this..
I dont want to use any open source project.. i want to create from my own code...
Kindly give me an 开发者_如何转开发idea or reference link to do this...
Thanks in advance... :)
Download Kal or TapKu calendar and read their source code.
You can try Kal Calendar
It looks like the weeks of the calendar are a part of a table view controller. These will be linked to a managed datasource behind the class.
The UIView has methods by which you can define how the view transitions from one state to another.
The bes place to start is with the iOS developer library...
UIView Class Reference
精彩评论