gpt4 book ai didi

swift - 重新打开应用程序后如何重新加载数据?

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

我尝试利用willEnterForeground,但我认为我没有掌握这个概念。我只想在应用程序重新打开后调用 tableView.reloadData 。快速执行此操作的最佳方法是什么?

我的 viewDidAppear 中还有一个 tableview.reloadData,但这似乎不起作用。

最佳答案

您可以注册UIApplicationDidBecomeActiveNotificationUIApplicationWillEnterForegroundNotification

NSNotificationCenter.defaultCenter().addObserverForName(UIApplicationDidBecomeActiveNotification, object: nil, queue: nil) { [weak self] notification in
self?.tableView.reloadData()
}

不要忘记存储一个指向观察者的指针并在deinit中取消注册它。您还可以将 addObserver 与选择器一起使用。

关于swift - 重新打开应用程序后如何重新加载数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32235063/

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