メインメニュー(ViewController)は、Xcode4のストーリーボードに追加したNavigationControllerに埋め込まれています。メニューに新しいビューを表示するボタンがあります。それを表示するために私は使用します:
- (IBAction) display : (id) sender
{
if(!anotherView) anotherView = [[AnotherView alloc] initWithNibName:@"AnotherView" bundle:nil];
[self presentModalViewController:anotherView animated:NO];
}
私の他のビューは、そのすべてのオブジェクトと要素とともに正しく表示されます。NavigationControllerのバーを除いて、それは表示されません。なんで ?
アドバイスありがとうございます