0

モデルスタイル「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フレームでも試してみましたが、ページシートの原点を設定できませんでした

したがって、これをどのように行う必要があるかを提案してください

4

0 に答える 0