iOS   发布时间:2022-05-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 在ViewDidLoad中执行Segue [复制]大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

参见英文答案 > Perform Segue on ViewDidLoad                                    12个 我试图在第一次加载应用程序时执行segue. 我可以在调试器中看到我的打印消息,但Perform Segue不起作用.我没有得到任何错误. 有人可以告诉我什么错了吗? import UIKit import LocalAuthentication
参见英文答案 > Perform Segue on ViewDidLoad                                    12个
我试图在第一次加载应用程序时执行segue.
我可以在调试器中看到我的打印消息,但Perform Segue不起作用.我没有得到任何错误.
有人可以告诉我什么错了吗?

import UIKit
import LocalAuthentication
let isFirstLaunch = UserDefaults.isFirstLaunch()
extension UserDefaults {
    // check for is first launch - only true on first invocation after app install,false on all further invocations
    // Note: Store this value in AppDelegate if you have multiple places where you are checking for this flag
    static func isFirstLaunch() -> Bool {
        let hasBeenLaunchedBeforeFlag = "hasBeenLaunchedBeforeFlag"
        let isFirstLaunch = !UserDefaults.standard.bool(forKey: hasBeenLaunchedBeforeFlag)
        if (isFirstLaunch) {

            UserDefaults.standard.set(true,forKey: hasBeenLaunchedBeforeFlag)
            UserDefaults.standard.synchronize()
        }
        return isFirstLaunch
    }
}

class loginVC: UIViewController {





    override func viewDidLoad() {

        super.viewDidLoad()

        if  isFirstLaunch == false {
          performSegue(withIdentifier: "setpassword",sender: self)
            print("testfalse") }
            else {
            performSegue(withIdentifier: "setpassword",sender: self)
            print("testTrue")}


        //       Do any additional setup after loading the view,typically from a nib.




    }

解决方法

您不能在viewDidLoad()中使用PerformSegue().将其移至viewDidAppear().

在viewDidLoad()时,当前视图甚至没有附加到窗口,因此不可能进行segue.

大佬总结

以上是大佬教程为你收集整理的ios – 在ViewDidLoad中执行Segue [复制]全部内容,希望文章能够帮你解决ios – 在ViewDidLoad中执行Segue [复制]所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。