如何不以模态方式呈现视图控制器
How to not present View Controller Modally
我正在尝试在用户登录(或之前已登录)时显示主屏幕。正在显示主屏幕,但是是模态的。如何才能正常显示?
示例:
if UserDefaults.standard.string(forKey: "appleAuthorizedUserIdKey") != nil {
// move to main view
performSegue(withIdentifier: "LogIn", sender: nil)
并且 segue 类型在故事板中设置为 'show'。谢谢
你正在执行 segue 的控制器需要嵌入 UINavigationController
才能正常显示它,否则它将以模态显示
示例:
if UserDefaults.standard.string(forKey: "appleAuthorizedUserIdKey") != nil {
// move to main view
performSegue(withIdentifier: "LogIn", sender: nil)
并且 segue 类型在故事板中设置为 'show'。谢谢
你正在执行 segue 的控制器需要嵌入 UINavigationController
才能正常显示它,否则它将以模态显示