简体   繁体   中英

Why UIModalPresentationPageSheet not working … its always fullscreen

Here is the code snippet for presenting view controllers as Form sheet.Its not working

It always comes as full screen

UIStoryboard *sb = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    UIViewController *vc = [sb instantiateViewControllerWithIdentifier:@"ViewController2"];
    vc.modalPresentationStyle = UIModalPresentationFormSheet;

    [self presentViewController:vc animated:YES completion:NULL];

I even tried ... preferred content size not works...

I think you are trying in iPhone.

Try this in iPad.

In iPhone its always full screen.

In iPad it will look as formsheet as per your expectation

If you want this to work in iPhone you have to try a third party library or do it yourself

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM