我的主菜单(一个 ViewController)嵌入在我在 Xcode4 的故事板中添加的 NavigationController 中。我的菜单中有一个按钮,显示一个新视图。为了显示它,我使用:
- (IBAction) display : (id) sender
{
if(!anotherView) anotherView = [[AnotherView alloc] initWithNibName:@"AnotherView" bundle:nil];
[self presentModalViewController:anotherView animated:NO];
}
我的另一个视图正确显示了它的所有对象和元素。排除我的 NavigationController 的栏,它不会出现。为什么 ?
感谢您的建议