ビューコントローラを呼びだして透明にするのは、こんな方法でいいらしい。
UIStoryboard *storyboard =
[UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
NewViewController *vc =
[storyboard instantiateViewControllerWithIdentifier:@"newVc"];
vc.view.backgroundColor = [UIColor clearColor];
self.modalPresentationStyle = UIModalPresentationCurrentContext;
[self presentViewController:newVC animated:NO completion:nil];
コメント