美文网首页iOS学习
iOS13开发中present的问题

iOS13开发中present的问题

作者: shyizne | 来源:发表于2019-11-20 18:41 被阅读0次

    我们会发现present下方会被遮住一部分。
    不多说直接代码:

    Swift:
    let vc = UIView() 
    vc.modalPresentationStyle = .fullScreen
    self.present(vc, animated: true, completion: nil)
    OC:
    UIViewController *vc = [[UIViewController alloc] init];  
    vc.modalPresentationStyle = 0;
    [self presentViewController:vc animated:YES completion:nil];
    

    相关文章

      网友评论

        本文标题:iOS13开发中present的问题

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