以下是用于将视图控制器呈现为表单的代码片段。它不起作用
它总是以全屏显示
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
UIViewController *vc = [sb instantiateViewControllerWithIdentifier:@"ViewController2"];
vc.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:vc animated:YES completion:NULL];
我甚至尝试过......首选内容大小不起作用......
答案 0 :(得分:2)
我认为你正在试用iPhone。
在iPad上试试。
在iPhone中它总是全屏。
在iPad中,它将按照您的期望看作表格
如果你想在iPhone上使用它,你必须尝试第三方库或自己动手