繁体   English   中英

为什么UIModalPresentationPageSheet不起作用…始终全屏显示

[英]Why UIModalPresentationPageSheet not working … its always fullscreen

这是用于将视图控制器显示为表单的代码片段。

它总是以全屏显示

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

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

我什至尝试过...首选内容大小不起作用...

我认为您正在尝试使用iPhone。

在iPad中尝试一下。

在iPhone中,它始终是全屏的。

在iPad中,它会按照您的期望显示为表格

如果要在iPhone中使用此功能,则必须尝试第三方库或自己做

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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