You can draw multiple instances of a class that sub classes UITableViewController but only the first seems to get any gestural recognition, it seems modal.
I assume the delegates and datasources are di开发者_如何学Pythonfferent as these are part of the instanced classes. I have considered creating my own viewController, delegate and datasource and using protocols.
From what I have read UITableViewController was designed around the iPhone so I wonder if a iPad non-modal version needs to be build.
Does anyone know what I can do?
Thanks
I never tried something like this, but if you having problem only in receiving gestures try using [self.tableviewName becomeFirstResponder];
精彩评论