很抱歉在这里问这种简单的问题。
但我是 iOS 开发的新手 :( 我也在尝试在谷歌上找到我的答案,但我不明白。
UITableView
我的问题是创建整个 TableView 后调用哪个协议方法?
我的意思是当创建UITableView
然后调用UITableViewDataSource
方法时,例如,
配置表视图
– tableView:cellForRowAtIndexPath: required method
– numberOfSectionsInTableView:
– tableView:numberOfRowsInSection: required method
– sectionIndexTitlesForTableView:
– tableView:sectionForSectionIndexTitle:atIndex:
– tableView:titleForHeaderInSection:
– tableView:titleForFooterInSection:
ETC...
但我想知道在没有任何 UITableView 交互的情况下创建整个 TableView(或调用上述方法)后调用 UITableView 的哪个方法?
所以,请帮帮我