谁接收谁移除
原文链接:https://www.f2er.com/swift/323959.html// 发布通知 NSNotificationCenter.defaultCenter().postNotificationName(<#codeIsMyGirl#>,object: nil); // 接收通知 NSNotificationCenter.defaultCenter(). addObserver(self,selector:"<#方法名#>"),name: "<#codeIsMyGirl#>",object: nil); // 析构器方法 类似于Object-C的 dealloc deinit { // print("移除了 通知"); NSNotificationCenter.defaultCenter().removeObserver(self) }