class HomeViewController: UIViewController, UITableViewDelegate,     UITableViewDataSource
 {

code

}


使用TableViewController时,我删除了这两个类/接口UITableViewDataSource,UITableViewDelegate。仍然可以正常工作。
为什么?

class HomeViewController: UIViewController
{

 code

}


那为什么要使用这些类呢?

最佳答案

它仍在工作,因为UITableViewController已经实现了委托UITableViewDelegateUITableViewDataSource :)

关于swift - UI TableView Controller ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33711389/

10-12 01:56