iOS13后,presentViewController不能铺满全屏(oc版)

 

BaseNavViewController *navVc = [[BaseNavViewController alloc] initWithRootViewController:loginVc];
    
    //加上下面这句=0的代码,登录页就顶到最上面去了
    navVc.modalPresentationStyle = 0;
    
    [self presentViewController:navVc animated:YES completion:nil];

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-07
  • 2022-12-23
  • 2021-12-09
  • 2022-12-23
  • 2021-12-26
猜你喜欢
  • 2022-02-05
  • 2022-12-23
  • 2021-09-12
  • 2022-02-12
  • 2021-11-30
  • 2022-02-01
  • 2022-12-23
相关资源
相似解决方案