为什么 UIModalPresentationPageSheet 不工作......它总是全屏
Why UIModalPresentationPageSheet not working ... its always fullscreen
这是将视图控制器呈现为表单的代码片段 sheet.Its 不起作用
总是全屏显示
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 中工作,你必须尝试第三方库或自己做
这是将视图控制器呈现为表单的代码片段 sheet.Its 不起作用
总是全屏显示
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 中工作,你必须尝试第三方库或自己做