小编典典

快速协议,IBOutlet属性不能具有非对象类型

swift

我想在IB中建立一个自定义的swift委托。委托是一个快速实现特定协议的对象。

protocol ThumbnailTableViewCellDelegate {
    func cellWasTouched(thumbnail: Bool, cell: UITableViewCell)
}

class ThumbnailTableViewCell: UITableViewCell {
    @IBOutlet var thumbnailTableViewCellDelegate: ThumbnailTableViewCellDelegate?
}

不幸的是,编译器抱怨:

error: 'IBOutlet' property cannot have non-object type 'ThumbnailTableViewCellDelegate'
    @IBOutlet var thumbnailTableViewCellDelegate: ThumbnailTableViewCellDelegate?
    ^~~~~~~~~

阅读 267

收藏
2020-07-07

共1个答案

小编典典

您必须将ThumbnailTableViewCellDelegate协议声明为@objc

@objc protocol ThumbnailTableViewCellDelegate {
    func cellWasTouched(thumbnail: Bool, cell: UITableViewCell)
}

这是因为@IBOutlet将变量声明为weak,仅适用于对象。我不确定为什么不能只说协议符合AnyObject,这也许是Swift的错误。

2020-07-07