UITableViewController不显示内容

时间:2014-04-18 09:08:54

标签: ios objective-c cocoa-touch uitableview

我尝试制作一些iPhone应用程序,而我的UITableViewController不显示内容。我的意思是细胞的标题。您可以在图片底部看到我设计的表格,但是当我运行此应用时,只有顶级菜单显示没有内容底部。enter image description here

3 个答案:

答案 0 :(得分:1)

首先检查delegate的{​​{1}}和datasource方法,您是否设置了它?如果是,那么检查UITableView是否是正确的行数?如果是,那么检查numberOfRowAtIndexPath?设置

cellForRowAtIndexPath

尝试以上建议,希望对您有所帮助。 :)

答案 1 :(得分:0)

为此,我认为你必须检查数据源并委托表视图的方法。他们必须为numberOfRows,numberOfSections提供值,然后在cellForRowAtIndexpath方法中为您的单元格提供文本。另外,不要忘记在storyboard中为您的单元格提供reuseIdentifier。

答案 2 :(得分:0)

您需要设置tableview数据源和委托方法。检查图像以获取信息。

enter image description here

同样在ViewController中你需要使用三个方法:numberOfSectionsInTableView:,tableView:numberOfRowsInSection :, tableView:cellForRowAtIndexPath: