I was reviewing some of my code, and suddenly I realized that a UIViewController which has UITableView and is the datasource and delegate of this UITableView does not declare the protocols <UITableViewDataSource, UITableViewDelegate>, but instead simply has the methods but never declares the protocols.
How is this even working?, per the documentation:
dataSource
The object that acts as the data source of the receiving table view.
@property(nonatomic, assign) id<UITableViewDataSource> dataSource
Discussion
The data source must adopt the UITableViewDataSource protocol. The data source is not retained.
delegate
The object that acts as the delegate of the receiving table view.
@property(nonatomic, assign) id<UITableViewDelegate> delegate
Discussion
The delegate must adopt the UITableViewDelegate protocol. The delegate is not retained.
There are NO warnings of any type, I do have the necessary methods of course to make this work and everything works perfectly, why is this working?. I am not inheriting from UITableViewController which I know declares this protocols, this is just a UIViewController subclass.
EDIT: Apparently IB will not give you any warnings if it is set up there, it does as expected on code though. I believe IB should also give you the warning, but I guess not.