私は最初の viewController に次のようなコードを持っています:
- (IBAction)showSetting:(id)sender{
settingView = [[settingController alloc]initWithNibName:@"settingController" bundle:nil];
settingView.modalPresentationStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:settingView animated:YES];
}
次に、2 番目のビュー (settingController.m) で:
- (IBAction)closeSetting:(id)sender{
[self dismissModalViewControllerAnimated:YES];
}
現在のモーダルを表示しながら背景の透明度を設定したいのですが、真っ黒な画面が表示されます。誰かが私を助けることができます..