背景が透明なView Controllerをモーダルに追加して、下の親View Controllerが見えるようにしたいと思います。(これはiPhone用のアプリであり、iPad用ではありません。)
私はこれを試しました:
TextFieldViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"TextFieldVC"];
vc.modalPresentationStyle = UIModalPresentationCurrentContext;
vc.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self.navigationController presentViewController:vc animated:YES completion:^{}];
運が悪く、View Controllerにクリアカラーの背景が与えられました。それが何かを変更する場合、私のView Controllerはストーリーボードにあります。