教程中缺少方法

时间:2014-11-16 22:11:44

标签: ios tableview method-missing

我是iOS编程的新手,所以我已经关注了Apple的一个开发者库教程。在"实施应用程序 - 教程:添加数据"部分,该网站希望我更改tableView:cellForRowAtIndexPath方法。问题是," XYZToDoListTableViewController.m"中没有类似的方法。我做错了什么,或者是什么?谢谢:D

1 个答案:

答案 0 :(得分:0)

你必须添加这个方法:

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

    // your code

    // return cell;
}