我的主菜單(一個ViewController)嵌入在Xcode4的故事板中添加的NavigationController中。 我的菜單中有一個按鈕,顯示一個新的視圖。要顯示它我使用:我在IBAction調用的視圖中沒有導航欄?
- (IBAction) display : (id) sender
{
if(!anotherView) anotherView = [[AnotherView alloc] initWithNibName:@"AnotherView" bundle:nil];
[self presentModalViewController:anotherView animated:NO];
}
我的其他視圖正確顯示其所有對象和元素。不包括我的NavigationController的欄,這沒有出現。爲什麼?
感謝您的建議
非常感謝這個建議。 – Rob