我不知道有多少人使用过这个图书馆,但是我用它来展示4月份发生的各种活动。目前,当我将日历视图添加到应用程序时,它默认为今天的日期并显示March。
有谁知道如何将其默认为4月而不是今天的日期?我确信这可以完成我只是不确定在代码中我需要在日期或其他东西中进行硬编码。
答案 0 :(得分:1)
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization.
calendar = [[TKCalendarMonthView alloc] init];
calendar.delegate = self;
calendar.dataSource = self;
NSString *str=[NSString stringWithFormat:@"2012-04-04"];
NSDateFormatter *df=[[NSDateFormatter alloc] init];
[df setDateFormat:@"yyyy-MM-dd"];
NSDate *date1=[df dateFromString:str];
[calendar selectDate:date1];
[self.view addSubview:calendar];
}
return self;
}
使用此代码显示日历。