Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an app that has an icon on the home screen that does a segue to my view controller. I have a UIViewController with a view and a navigation bar. I am trying to show the calendar, but it is not appearing.

My UIViewController is called ViewCOntrollerCalendar and in the init method I am doing the following:

calendar = [[TKCalendarMonthView alloc] init];
calendar.delegate = self;
calendar.dataSource = self;

and then in my viewDidLoad I am doing this:

[self.view addSubview:calendar];
[calendar reload];

But the calendar never appears. I have looked all over for an example, but I can not find anything that loads the calendar based off of a button. I am fairly new to Xcode so I am sure I am missing something foolish.

I would like to have the calendar appear with the navigation bar at the top.

Any help would be appreciated.

Thanks

share|improve this question

1 Answer

Download the sample code from here http://www.cocoacontrols.com/platforms/ios/controls/tapku-calendar

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.