UITableView加载数据后甚至提示什么?

时间:2010-03-06 07:28:54

标签: iphone

作为标题

欢迎任何评论

由于

InterDev中

1 个答案:

答案 0 :(得分:0)

我假设你的意思是事件?

在最简单的表视图中,无论数据是来自控制器viewDidLoad方法中的数组还是其他对象,都会加载数据。

然后-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 实现它只返回数据源对象的计数,以便表视图知道它将绘制多少个对象。

最后实现-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath以通过返回表格视图来描述表格中的单元格。