2

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... :)

Brad Werth
  • 17,411
  • 10
  • 63
  • 88

3 Answers3

4

enter image description here enter image description here

Download Kal or TapKu calendar and read their source code.

Jano
  • 62,815
  • 21
  • 164
  • 192
  • Thanks for the reply... The Kal calender has no NIB files and i cant understand... If it is possible, please give me core concept behind the calender... i will try my own... – Karthik Keyan.B Jun 22 '11 at 10:04
0

You can try Kal Calendar

Swapna
  • 2,245
  • 2
  • 19
  • 22
0

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

englishteeth
  • 228
  • 2
  • 9