I recently went to make sure my app would work with ipad.. much easier said than done...
My app has navigation controllers, which I think is the problem. I set up the tabbar like so:
Code:
BlogViewController *blogController = [[BlogViewController alloc] initWithNibName:@"BlogView" bundle:[NSBundle mainBundle]];
blogController.title = @"Blog";
[controllersArray addObject:blogController];
//there is more than one..
tabBarController.viewControllers = controllersArray;
my navigation controllers then have tableviews, which don't do nothing when clicked, except deselect, where they are supposed to push another view controller.
any ideas what might be going on?
thanks!