第9课老师说numberOfSectionsInTableView:方法默认返回1,但是我自己创建项目的时候发现默认返回0,导致我的table view cell消失了!我发现问题出在哪里,并通过设置 numberOfSectionsInTableView: return 1 来解决它,问题消失了。那么,这是否意味着斯坦福犯了一个错误?
当我在 .m 文件中添加 UITableViewController 的新子类时,Xcode 生成了以下代码:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
#warning Potentially incomplete method implementation.
// Return the number of sections.
return 0;
}
顺便说一句,我正在使用 Xcode 4.3.3 ...