iOS13的坑:模态对话框2020-01-08

2020-01-08  本文已影响0人  勇往直前888

问题

iOS13以前,模态对话框都是全屏展示的。iOS13不知道哪根筋搭错了,把这个默认值给改了。

image.png image.png

修复

UIViewController *vc1 = [[UIViewController alloc] init];    // vc1即需要被present的viewcontroller
vc1.modalPresentationStyle = UIModalPresentationFullScreen;
[self presentViewController:vc animated:YES completion:nil];

iOS13开发中可能会出现的present viewcontroller相关问题

image.png image.png

吐槽

iOS13不说是史上最差的一个版本,也是非常差的一个版本。苹果脑残。

上一篇下一篇

猜你喜欢

热点阅读