向我的应用程序添加 UITableViewController 时,我注意到 Xcode 的模板中缺少我要添加的常用代码:
我希望看到:
@interface myTableViewController : UITableViewController <UITableViewDelegate , UITableViewDataSource>
相反,我看到:
@interface myTableViewController : UITableViewController
为什么不需要声明 UITableViewController 是委托和数据源?