普通viewController绘制tableview tableviewcell

翟黎明
2023-12-01

navigation controller后面挂接普通的view controller容器,容器里拖入table view 和table view cell。

这种方法:新建view controller容器对应的controller.h 和.m文件,.h文件中的类需要继承UITableViewController的datasource 和 delegate, 在.m文件中,需要实现第一中方法中的后面三种方法即可。

numberOfSectionsInTableView()

numberOfRowsInSection()

cellForRowAtIndexPath()

 类似资料: