gpt4 book ai didi

ios - 在Swift 3 NotificationCenter观察器中使用选择器

转载 作者:行者123 更新时间:2023-12-01 18:07:05 25 4
gpt4 key购买 nike

NotificationCenter.default.addObserver(self, selector: Selector(("uploaded")), name: NSNotification.Name(rawValue: "uploaded"), object: nil)

我正在写名称:“uploaded:”,xcode将其更正为上面的代码。问题是运行应用程序时出现无法识别的选择器。

任何人都知道如何解决此问题以使其与Swift 3兼容

最佳答案

NotificationCenter.default.addObserver(self, selector: #selector(ViewController.update), name: NSNotification.Name(rawValue: "uploaded"), object: nil)

func update() {
// do what you want
}

请注意,“ViewController”是您的函数所在的类名

关于ios - 在Swift 3 NotificationCenter观察器中使用选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39984164/

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