モデルスタイル「UIModalPresentationFormSheet」の提示されたviewControllerのフレームを変更する方法
期待されるフレーム
現在のフレーム
ビューの境界を設定しようとしました OverlayViewController.view.superview.bounds = CGRectMake(20,20,600,400)
提示ビューのフレームと中心を設定しました
OverlayViewController.view.superview.autoresizingMask =
UIViewAutoresizingFlexibleTopMargin |
UIViewAutoresizingFlexibleBottomMargin |
UIViewAutoresizingFlexibleLeftMargin |
UIViewAutoresizingFlexibleRightMargin;
CGRect screenBounds = [[UIScreen mainScreen] bounds];
OverlayViewController.view.superview.frame = CGRectMake(20,20,600,400);
CGPoint center = CGPointMake(CGRectGetMidX(screenBounds), CGRectGetMidY(screenBounds));
setModalPresentationStyle:UIModalPresentationPageSheet
フレームでも試してみましたが、ページシートの原点を設定できませんでした
したがって、これをどのように行う必要があるかを提案してください