Ipad の navigationController.view でビューをサブビューとして表示する際に問題があります。viewController (navBar 付き) に透明な背景のビューを表示する必要がありますが、向きを変更すると、navBar がビューの前景に表示されます。シンプルなビューベースのアプリを作成しました。ここで、プロジェクトに追加したコード:
AppDelegate.h:
UINavigationController *_navController;
@property (strong, nonatomic) UINavigationController *navController;
AppDelegate.m:
_navController = [[[UINavigationController alloc] initWithRootViewController:self.viewController] autorelease];
self.window.rootViewController = _navController;
ViewController.m:
- (void)viewDidLoad
{
[super viewDidLoad];
UIView *view = [[[UIView alloc] initWithFrame:self.view.frame] autorelease];
[view setBackgroundColor:[UIColor redColor]];
[self.navigationController.view addSubview:view];
}