Can anybody tell me the how to change the present iPhone app to support iPad?
MyController *controller = nil; if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) controller = [[MyController alloc] initWithNibName:@"MyiPadNib" bundle:nil]; else controller = [[MyController alloc] initWithNibName:@"MyiPodNib" bundle:nil]; [self.navigationController pushViewController:controller animated:YES]; I've tried this, what are the other changes I have to do?