1

I use Tapku calendar in my iPhone Application,

I have date 2012-11-03 00:00:00 +0000,

I want to display month of November in calendar.

Please suggest me how can i do this?

Wh1T3h4Ck5
  • 8,399
  • 9
  • 59
  • 79
Anki
  • 589
  • 2
  • 13
  • 22

2 Answers2

1

Call the following method on your TKCalendarMonthView:

/** Selects a specific date in the month grid. 
 @param date The date that will be highlighed.
 */
- (void) selectDate:(NSDate*)date;
Greg Hewgill
  • 951,095
  • 183
  • 1,149
  • 1,285
1
[calendar selectDate:yourDate];
Paras Joshi
  • 20,427
  • 11
  • 57
  • 70