我在這裏試圖完成的是將tableView與原型單元格對齊,並在每個單元格中顯示一年或兩年的日期。我得到它通過使用下面的代碼標籤顯示今天的日期:在桌面視圖中顯示一年的日期
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"MM/dd/yyyy"];
NSDate *dateNow = [NSDate date];
dateArray = [NSMutableArray arrayWithObjects:[dateFormatter stringFromDate:dateNow], nil];
它的工作原理,以一個日期(今天的日期)添加到第一個單元格。我無法弄清楚如何讓它以1的間隔添加所有的日子。任何幫助?
我顯示與此代碼數組中的信息:在的cellForRowAtIndexPath
static NSString *CellIdentifier = @"Cell";
Custom *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.dateLabel.text = [dateArray objectAtIndex:indexPath.row];