アプリにUIModalPresentationFormSheet
ビューが表示されます。それらのRight
いくつかは からいくつかから表示されBottom
、却下はランダムに見えます。消えるものもあれば、Bottom
行くLeft
ものもあるUp
。それらが表示されて消える方向を設定する方法はありますか?
私が提示するために使用するコード(この同じコード、提示されているのは異なるviewcontrollerであり、同じview controllerから呼び出され、異なるモーダルビューのさまざまなアニメーションがあります):
MyViewController *newModalView = [[MyViewController alloc] init];
newModalView.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:newModalView animated:YES];
次に、モーダル ビューでこれを呼び出して閉じます。
[self dismissModalViewControllerAnimated:YES];