Hi . iam using Kal calendar from http://github.com/klazuka/Kal i want use this calendar on my app : so i add Kal Folder to project , the developer said if you want create basic calendar just add these code to your project :
KalViewController *calendar = [[[KalViewController alloc] init] autorelease];
[self.navigationController pushViewController:calendar animated:YES];
here is my code :
#import "kalViewController.h"
- (void)viewDidLoad {
KalViewController *calendar = [[[KalViewController alloc] init] autorelease];
[self.navigationController pushViewController:calendar animated:YES];
}
but doesn't happen anything !