0

最后决定为我的培训日历应用程序使用日历库:

我正在尝试自定义 Tapku 日历...

只是想知道,如何在同一页面(日历下方)添加表格视图并更新其单元格?

一旦用户选择任何特定日期,特定日期的事件将显示在表格单元格中。

注意:我使用“DidSelectDate”方法来显示消息。

问题是,如果我在日历下方添加表格视图,它不可见。我该怎么做?我在做什么:检查是否删除了任何日期:

- (void)calendarMonthView:(TKCalendarMonthView *)monthView didSelectDate:(NSDate *)d {
NSLog(@"calendarMonthView didSelectDate %@",d);
//[self papulateTable];
//[table reloadData];
[self performSelector:@selector(papulateTable) withObject:nil afterDelay:1.0];
//flagtoCheckSelectedCalendarDate = 1;
//[table reloadData];

}

通过调用重新加载数据用我的自定义方法填充表:

-(UITableViewCell*)papulateTable
{
listOfTrainings = [[NSMutableArray alloc] init];
[listOfTrainings addObject:@"Objective - C"];
[listOfTrainings addObject:@"C#.Net"];
[listOfTrainings addObject:@"ASP.Net"];
[listOfTrainings addObject:@"JAVA"];
[listOfTrainings addObject:@"Memory management"];
[listOfTrainings addObject:@"Multi Threading app"];

NSString *cellValue = [listOfTrainings objectAtIndex:tempIndexPath.row];
cell.textLabel.text = cellValue;
[table reloadData];
return cell;

}

4

1 回答 1

0

UITableView 有很多重要的方法。

您想要的一些方法:

//Get Visible Cells.
NSArray *cells = [tableview visibleCells];

//Get the index path row of a cell.
NSIndexPath * cellRow = [tableview indexPathForCell:cellPointer];

//Return all visible index row.
NSArray *indexVisibleRows = [tableview indexPathsForVisibleRows];

//Reload Data
[tableview reloadData];

此外,您有一些委托,可以轻松控制 tableview:

-ScrollView 代表。

-TableView 代表。

看一下苹果文档,你需要的东西都有,只需使用tableview中的exists方法制定策略即可。

http://developer.apple.com/library/ios/documentation/uikit/reference/UITableView_Class/Reference/Reference.html

于 2013-01-31T16:58:14.687 回答