我想在IB中建立一个自定义的swift委托(delegate)。委托(delegate)是一个可以快速实现特定协议(protocol)的对象。
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
协议(protocol)声明为@objc
:
@objc protocol ThumbnailTableViewCellDelegate {
func cellWasTouched(thumbnail: Bool, cell: UITableViewCell)
}
这是因为
@IBOutlet
将变量声明为weak
,该变量仅适用于对象。我不确定为什么不能只说协议(protocol)符合AnyObject
,这也许是Swift的错误。关于ios - 快速协议(protocol),IBOutlet属性不能具有非对象类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24561490/