标签: ios objective-c iphone
我有以下头文件
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
和以下m文件
@interface Menu : UITableViewController;
我希望能够在初始化方法中将单元格添加到我的tableview中,我该怎么做?
答案 0 :(得分:1)
要向表中添加单元格,必须实现委托和数据源方法。
- tableView:cellForRowAtIndexPath:将为指定的索引路径创建并返回一个单元格,该路径本身基本上是一个部分和行号。
- tableView:cellForRowAtIndexPath:
- tableView:numberOfRowsInSection:指定表格中的单元格数。
- tableView:numberOfRowsInSection:
您可以查看文档here。
有一个很好的教程here。