MyViewController
というほぼ空のUIViewControllerクラスを作成しました。 viewDidLoad私はタイトルを設定し、navigationItem.leftBarButtonItemにクローズボタンを追加しています。UIViewControllerでビューを設定する方法
私はこのような私のMyViewController
を提示しています:のViewControllerが提示されている場合
MyViewController *myViewController = [[MyViewController alloc] init];
UINavigationController *nc = [[UINavigationController alloc] myViewController];
nc.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:nc animated:YES];
、それの見解の背景には、ちょうど黒です。 UIViewControllerがストーリーボードに設定されているときと同じように、画面を空のビューで塗りつぶすように設定するにはどうすればよいですか?
私はのviewDidLoadに以下を追加しようとしましたが、ビューはまだ黒です:
self.view = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
ビューのbackgroundColorが白ですか? –