这是将视图控制器呈现为表单的代码片段。它不起作用
它总是以全屏形式出现
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
UIViewController *vc = [sb instantiateViewControllerWithIdentifier:@"ViewController2"];
vc.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:vc animated:YES completion:NULL];
我什至尝试过...首选内容大小不起作用...