내 주 메뉴 (ViewController)는 Xcode4의 스토리 보드에 추가 한 NavigationController에 포함되어 있습니다. 내 메뉴에 새로운보기를 표시하는 버튼이 있습니다. 를 표시하려면 내가 사용IBAction이라는보기에서 탐색 모음이 없습니다.
- (IBAction) display : (id) sender
{
if(!anotherView) anotherView = [[AnotherView alloc] initWithNibName:@"AnotherView" bundle:nil];
[self presentModalViewController:anotherView animated:NO];
}
내 다른보기는 정확하게 모든 개체와 요소가 표시됩니다. 내 NavigationController의 막대를 제외하면 나타나지 않습니다. 왜 ? 당신의 조언
이 조언에 대해 감사드립니다. – Rob