presentModalViewControllerを使用してビューを表示し、removeFromSuperviewを使用してUViewを削除しようとした後、機能しなくなりました。
コマンドpresentModalViewControllerを使用する前は、スーパービューからUiviewを削除しても問題はありません。
何が変わったの?
まず、presentModalViewController
は非推奨であるため、使用しないでください。
UIViewControllerクラス参照に従って、代わりにを使用する必要がありますpresentViewController:animated:completion:
。
次に、いずれかのpresent??ViewController
方法を使用する場合、それを却下するには、次のdismiss??ViewController
ような適切な方法を使用する必要があります。
// Present the view controller
[self presentViewController:viewController animated:YES completion:NULL];
// Later, to dismiss it:
[self dismissViewControllerAnimated:YES completion:NULL];