Swift 2.3 打开按钮 URL 失败,出现无法识别的选择器错误
Swift 2.3 Button to open URL failing with error unrecognised selector
我创建了一个按钮来打开 url 链接,但由于无法识别的选择器错误而失败。我通常会通过在线阅读的方式将添加目标设置为自我,但对于这个特定实例,我收到错误:
无法将 NSOBJECT ->() -> infoViewcontroller.infoview 类型的值转换为预期的参数类型 AnyObject。
因此,为了解决这个问题,Xcode 建议将目标设置为 NSOBJECT.self。然而,这不再出现错误,但在单击按钮和 returns 时崩溃,原因是:[NSObject displayWebLink]:无法识别的选择器发送到 class 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")
}
}
`
这不是一条非常有用的错误消息。编译器正在尝试验证正确的对象是否定义了名称为 displayWebLink
的方法,并且它似乎正在使用闭包类型作为它正在搜索的上下文。
试着告诉它在哪里可以找到方法:
button.addTarget(self, action: #selector(ActivityInfoView.displayWebLink), forControlEvents: .TouchUpInside)
我通过将按钮从 'let' 更改为 'lazy var' 解决了这个问题,如下所示:
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
}()
我创建了一个按钮来打开 url 链接,但由于无法识别的选择器错误而失败。我通常会通过在线阅读的方式将添加目标设置为自我,但对于这个特定实例,我收到错误: 无法将 NSOBJECT ->() -> infoViewcontroller.infoview 类型的值转换为预期的参数类型 AnyObject。 因此,为了解决这个问题,Xcode 建议将目标设置为 NSOBJECT.self。然而,这不再出现错误,但在单击按钮和 returns 时崩溃,原因是:[NSObject displayWebLink]:无法识别的选择器发送到 class 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")
}
}
`
这不是一条非常有用的错误消息。编译器正在尝试验证正确的对象是否定义了名称为 displayWebLink
的方法,并且它似乎正在使用闭包类型作为它正在搜索的上下文。
试着告诉它在哪里可以找到方法:
button.addTarget(self, action: #selector(ActivityInfoView.displayWebLink), forControlEvents: .TouchUpInside)
我通过将按钮从 'let' 更改为 'lazy var' 解决了这个问题,如下所示:
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
}()