【发布时间】:2020-03-25 20:46:16
【问题描述】:
大家好,我是 Xcode 的新手。每当我添加一个 ViewController 并从前一个屏幕对其执行 segue 时,它看起来像这样。
我希望它看起来是全屏的,而不是让它上下滑动。
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)
}
}
}
【问题讨论】: