美文网首页
iOS13 presentViewController样式调整

iOS13 presentViewController样式调整

作者: 倪大头 | 来源:发表于2019-10-08 11:59 被阅读0次

    iOS13把UIViewController的UIModalPresentationStyle属性默认为UIModalPresentationPageSheet,效果变成下面这样:

    image.png

    需要在present页面时修改这个属性为UIModalPresentationFullScreen:

    UIViewController *viewController = [[UIViewController alloc] init];
    viewController.modalPresentationStyle = UIModalPresentationFullScreen;
    [self persentViewController:viewController animated:YES completion:nil];
    

    相关文章

      网友评论

          本文标题:iOS13 presentViewController样式调整

          本文链接:https://www.haomeiwen.com/subject/jqkbpctx.html