gpt4 book ai didi

swift - 如何在Swift中学习 'tableViewSelectionDidChange:'里面的NSTableView中的selection确实发生了变化?

转载 作者:搜寻专家 更新时间:2023-11-01 06:15:56 25 4
gpt4 key购买 nike

我有一个 macOS 项目,其中有两个 tableView 与 delegate 具有相同的 viewControl。我如何知道在 tableViewSelectionDidChange: 上调用了两者中的哪一个?

编辑:我正在使用 tableViewSelectionDidChange: 来防止我用作某种“标题组”的某些项目被点击。

我读了这个问题 NSTableViewDelegate with 2 tables and tableViewSelectionDidChange:(NSNotification *)aNotification但作为初学者,我不知道如何在 Swift 中执行此操作。

我试过了

func tableViewSelectionDidChange(_ notification: Notification) {

let tableViewName = (notification.object? as AnyObject).identifier // error

if tableViewName == myTableView1 {
print("myTableView1")
}

}

但我收到“标识符使用不明确”错误。有人这么好心告诉我我做错了什么吗?一个工作示例将不胜感激。

最佳答案

来自 NSTableViewSelectionDidChangeNotification 的文档

The notification object is the table view whose selection changed. This notification does not contain a userInfo dictionary.

所以这个对象显然是非可选的并且是一个 TableView 实例。它不是 AnyObject

let tableView = notification.object as! NSTableView

if let identifier = tableView.identifier, identifier == "myTableView1" {
print("myTableView1")
}

关于swift - 如何在Swift中学习 'tableViewSelectionDidChange:'里面的NSTableView中的selection确实发生了变化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45117283/

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