我想在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? ^~~~~~~~~
您必须将ThumbnailTableViewCellDelegate协议声明为@objc:
ThumbnailTableViewCellDelegate
@objc
@objc protocol ThumbnailTableViewCellDelegate { func cellWasTouched(thumbnail: Bool, cell: UITableViewCell) }
这是因为@IBOutlet将变量声明为weak,仅适用于对象。我不确定为什么不能只说协议符合AnyObject,这也许是Swift的错误。
@IBOutlet
weak
AnyObject