为什么我的表视图没有在-reloadData上调用委托方法?

时间:2009-11-12 05:19:31

标签: iphone

我有NSobject页面,其中我有重新加载表的方法 喜欢

MainPageTable *m = [[ MainPageTable alloc] init];
[m.tableView reloadData];
[m release];

以下称为:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

但这不是:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath  

有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

毫米。 reloadData是一个标准的tableView方法。在此调用之后,tablewView询问它的委托和dataSource有关信息,需要在重新加载,新单元格等之后重新加载表中的部分数量。