這是我的協議:類不符合協議
protocol LiveTableViewCellProtocol: class {
var data: LiveCellObjectProtocol! { get set }
}
這是我的類:
class RepliesTableViewCell: UITableViewCell, LiveTableViewCellProtocol {
var data: RepliesCellObject! //ERROR! does not conform to protocol.
}
RepliesCellObject
定義爲:
public class RepliesCellObject: NSObject , LiveCellObjectProtocol{
//basic stuff here.
}
RepliesCellObject
是LiveCellObjectProtocol。 ..爲什麼我的表格單元不符合?
在我的RepliesTableViewCell中,我必須將我的'''data'定義爲'''RepliesCellObject'''。 – TIMEX