I've read that whenever you're using a UITableView you should conform your controller class to the <UITableViewDelegate, UITableViewDataSource> protocols (if you're not using the tailormade UITableViewController class).
So my superclass is UIViewController but I forgot to add the <UITableViewDelegate, UITableViewDataSource> declaration in the .h file. For some reason the table works anyways. It gets its data from the class and clicking cells works as expected.
Can somebody explain this to me -- why it's working?