我有這樣的代碼IOS:模擬日曆
NSDateComponents *components = [[[NSDateComponents alloc] init] autorelease];
[components setYear:2011];
[components setDay:1];
[components setMonth:7];
NSCalendar *gregorianCalendar = [[[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar] autorelease];
NSDate *date = [gregorianCalendar dateFromComponents:components];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"dd"];
NSString *strDate = [dateFormatter stringFromDate: date];
,但現在我要爲我的一個月,每天設置31個標籤:我如何爲每個標籤加入這種成分?
[components setDay:1];
,我也想,所有的星期天是紅色的,然後艾利7天標籤必須是紅色的;你可以幫我嗎?
我看不出有任何代碼的標籤。 – Eiko 2011-04-19 07:51:27
我不知道如何爲我的31個標籤做代碼;我可以設置第一個標籤first.text = strDate; 「第一」是我的標籤;但是之後?換其他標籤?我必須給[component setDay:1]添加一個值;沒有? – CrazyDev 2011-04-19 07:53:49