我正在尝试将 Tapku 日历添加到我的应用程序中。我正在使用故事板,我添加了 Tapku 库,导入了必要的文件并添加了 TKCalendarMonthViewDelegate 方法。我正在将日历添加到名为 calendarView 的 UIView。当我运行应用程序时,日历不会出现,只是里面什么都没有的视图。
-(void)viewDidLoad
{
[super viewDidLoad];
[self.navigationController setNavigationBarHidden:NO animated:YES];
self.navigationItem.hidesBackButton = YES;
calendar = [[TKCalendarMonthView alloc] init];
calendar.delegate = self;
calendar.dataSource = self;
calendar.frame = CGRectMake(0, 0, calendar.frame.size.width, calendar.frame.size.height);
// Ensure this is the last "addSubview" because the calendar must be the top most view layer
[self.view addSubview:calendar];
[calendar reload];
// Do any additional setup after loading the view.
}
任何人都可以帮助我吗?