为什么我的视图控制器不能填满整个屏幕?

时间:2019-11-30 17:33:15

标签: ios swift xcode

大家好,我是Xcode的新手。每当我添加一个ViewController并从上一个屏幕对其执行segue时,它看起来都是这样。

Pic of ViewController

我希望它显示为全屏,而不是使其上下滑动。

This is the View its connected to

这是代码。

if loginMode{
Auth.auth().signIn(withEmail: email, password: password) { (result, error) in
             if error == nil {
                 self.performSegue(withIdentifier: "authSuccess", sender: nil)
             } else {
                 //print(error)
             }
         }

}

2 个答案:

答案 0 :(得分:0)

iOS 13更改动画

尝试

  let VC1 = self.storyboard!.instantiateViewController(withIdentifier: "example")
  VC1.modalPresentationStyle = .fullScreen
  self.navigationController!.present(VC1, animated: true, completion: nil)

答案 1 :(得分:0)

在您展示它时执行此操作

YOUR_VIEW_CONTROLLER.modalPresentationStyle = .fullScreen