我创建了一个用于打开网址链接的按钮,但是由于无法识别的选择器错误而失败。我通常会通过我在线阅读的方式将添加目标设置为自我,但对于这个特定的实例我得到错误: 无法转换NSOBJECT类型的值 - >() - > infoViewcontroller.infoview到期望的参数类型AnyObject。 因此,为了解决这个问题,Xcode建议将目标设置为NSOBJECT.self。但是,这不再出现错误,但在单击按钮时崩溃并返回原因:[NSObject displayWebLink]:无法识别的选择器发送到类0x106011e58。所以,我只是想知道这样做的正确方法是什么,为什么?以下是我的代码。
class ActivityInfoView: UICollectionViewCell {
var activity: ActivitysEvents? {
didSet {
}
}
override init(frame: CGRect) {
super.init(frame: frame)
setupViews()
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
var textView: UITextView = {
let tv = UITextView()
tv.userInteractionEnabled = false
return tv
}()
let dividerLineView: UIView = {
let view = UIView()
view.backgroundColor = UIColor.lightGrayColor()
return view
}()
let urlLinkButton: UIButton = {
let button = UIButton()
button.backgroundColor = UIColor.redColor()
button.titleLabel?.font = UIFont.systemFontOfSize(14)
button.setTitleColor(UIColor.blueColor(), forState: .Normal)
// button.addTarget(self, action: #selector(displayWebLink), forControlEvents: .TouchUpInside)
button.addTarget(NSObject.self, action: #selector(displayWebLink), forControlEvents: .TouchUpInside)
return button
}()
func displayWebLink() {
print("abcdefghijklmnop")
if let urlLink = activity?.url {
// UIApplication.sharedApplication().openURL(NSURL(string: urlLink)!)
UIApplication.sharedApplication().openURL(NSURL(string: urlLink)!, options: [:], completionHandler: nil)
print("dhudududuhdu")
}
}
`
答案 0 :(得分:1)
这不是一个非常有用的错误消息。编译器正在尝试验证正确的对象是否定义了名为displayWebLink
的方法,并且它似乎使用闭包类型作为其搜索的上下文。
尝试告诉它在哪里找到方法:
button.addTarget(self, action: #selector(ActivityInfoView.displayWebLink), forControlEvents: .TouchUpInside)
答案 1 :(得分:0)
我通过更改按钮来解决此问题。到了懒惰的变种'如下:
lazy var urlLinkButton: UIButton = {
let button = UIButton()
button.backgroundColor = UIColor.redColor()
button.titleLabel?.font = UIFont.systemFontOfSize(14)
button.setTitleColor(UIColor.blueColor(), forState: .Normal)
button.addTarget(self, action: #selector(displayWebLink), forControlEvents: .TouchUpInside)
//button.addTarget(self(), action: #selector(ActivityInfoView.displayWebLink), forControlEvents: .TouchUpInside)
return button
}()