views:

16

answers:

1

Is it ok to use your view controller as your uiview's delegate, it seems to make sense to be as they are similar in nature.

More specifically is it OK to use your uitableviewcontroller as your uitableview's delegate and data source?

+3  A: 

Yes.

And UITableViewController already is the .delegate and .dataSource of its UITableView by default.

KennyTM