我是iOS编程的新手,所以我已经关注了Apple的一个开发者库教程。在"实施应用程序 - 教程:添加数据"部分,该网站希望我更改tableView:cellForRowAtIndexPath
方法。问题是," XYZToDoListTableViewController.m"中没有类似的方法。我做错了什么,或者是什么?谢谢:D
答案 0 :(得分:0)
你必须添加这个方法:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// your code
// return cell;
}