我做了一個應用程序有一個導航控制器,應用程序工作正常,但在一個UIView我有一個UITableView。iOS - 查看未打開(導航控制器應用程序)
當推電池,我需要打開新的看法。我在didSelectRowAtIndexPath中試過這個:
NextViewController *nextView = [[NextViewController alloc] initWithNibName:@"NextViewController" bundle:nil];
[self.navigationController pushViewController:nextView animated:YES];
[nextView release];
但是視圖無法打開。我想這太:
NextViewController *screen = [[NextViewController alloc]initWithNibName:@"nextView" bundle:nil];
screen.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:screen animated:YES];
[screen release];
現在它是開放的,但位置不正確,觀點是在頂部導航欄和標籤欄和視圖的一部分被隱藏。
如何正確打開視圖?
編輯:
我把Ø療法的UIButton在其他的UIView打開其他次要的UIView和不工作。我完全困惑。
我不想將其作爲模態呈現。我不明白爲什麼正確的方式不起作用。 – JSanchez 2011-03-30 14:06:42
self.navigationController的值是什麼? – JFoulkes 2011-03-30 16:08:01