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”是您的函数所在的类名

10-06 07:54