语法“Selector”Swift 2.2

前端之家收集整理的这篇文章主要介绍了语法“Selector”Swift 2.2前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试修复我的NSNotificationCenter并且它无法正常工作

消息:

'Use of string literal for Objective-C selectors is deprecated; use '#selector' instead'.

这条线:

NSNotificationCenter.defaultCenter().addObserver(self,Selector :#selector(GameViewController.goBack)(GameViewController.goBack),object: nil)
        self.dismissViewControllerAnimated(true,completion: {
        });
        }
@ Eendje的回答是不正确的第一条评论.

我认为这是更好的答案.

NSNotificationCenter.defaultCenter().addObserver(self,#selector(self.goBack),name: "your notification name",object: nil)

如果某些操作有目标,则应该显示为#selector(target.method)或#selector(target.method(_ :))

这是另一个例子

UIGestureRecognizer(target: target action:#selector(target.handleGesture(_:))
原文链接:https://www.f2er.com/swift/319298.html

猜你在找的Swift相关文章