大家好,我是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)
}
}
}
答案 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