FirstViewController
にはSecondViewController
をモーダルで表示し、SecondViewController
には半透明の背景(70%の不透明度を持つ白色)があります。半透明の背景を持つモーダルViewControllerを提示する
私が直面している問題は、SecondViewController
を表示すると、FirstViewController
の表示が、SecondViewController
のプレゼンテーションが終了するまで表示されます。
これは、UIの表示が遅くなるようにします。私が期待している動作は、SecondViewController
が表示されるとただちに表示され、FirstViewController
のビューは表示されないか、またはSecondViewController
のビューが表示される前に徐々に消えます。
ご協力いただきますようお願い申し上げます。
私が提示するために使用するコードは次のとおりです。
SecondViewController *cntrlr = (SecondViewController *)[[UIStoryboard activationStoryboard] instantiateViewControllerWithIdentifier:@“UserVC”];
[cntrlr setModalPresentationStyle:UIModalPresentationPopover];
[self presentViewController:cntrlr animated:YES completion:nil];
モデルのいくつかのコードを置くことができますか? –
@yagneshdobariya私は質問を編集しました、plzは一見を持っています –
plsは答えを見ています。 –