gpt4 book ai didi

swift - 在 View Controller 中获取 applicationDidFinishLaunching 调用。解析尚未初始化

转载 作者:行者123 更新时间:2023-11-30 10:10:16 25 4
gpt4 key购买 nike

我正在尝试从我的初始 View Controller 中加载数据。问题是 Parse 是在我的 AppDelegatedidFinishLaunching 中初始化的,因此我需要等到它被调用后再尝试从 Parse 加载数据。在我的 View Controller 中获取此通知的最佳方法是什么?或者在我的 AppDelegate 中获取数据会更好吗?

感谢所有帮助!

最佳答案

您可以在 View Controller viewDidLoad 方法中添加 UIApplicationDidFinishLaunchingNotification 的观察者:

NotificationCenter.default.addObserver(self, selector: #selector(didFinishLaunchingNotification), name: UIApplication.didFinishLaunchingNotification, object: nil)

将您的方法添加到 View Controller

@objc func didFinishLaunchingNotification(_ notification: Notification) {
// your code
}

关于swift - 在 View Controller 中获取 applicationDidFinishLaunching 调用。解析尚未初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33375576/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com