gpt4 book ai didi

ios - 返回应用程序时取消选择 TableView 行

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:25:22 26 4
gpt4 key购买 nike

我有一个表格 View ,其中一个表格 View 单元格打开了另一个应用程序。当我返回我的应用程序时,表格 View 单元格仍然突出显示。返回应用程序时取消选择表格 View 单元格的最佳方法是什么?

编辑:问题是 -viewWillAppear-viewDidAppear 在从应用程序返回时不会被调用,因为 View 已经可见。

最佳答案

在viewDidLoad中设置通知

final override func viewDidLoad() {
super.viewDidLoad()

// add notification observers
NotificationCenter.default.addObserver(self, selector: #selector(didBecomeActive), name: NSNotification.Name.UIApplicationDidBecomeActive, object: nil)
}

创建方法 didBecomeActive

func didBecomeActive() {
if let indexPath = tableView.indexPathForSelectedRow {
deselectRow(at: indexPath, animated: true)
}
}

UIKit 文档

关于ios - 返回应用程序时取消选择 TableView 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42473220/

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