我有自定义的UITableViewCell类,其中包含.xib
和.swift
文件。然后我想从它继承,但只有.swift
,因为我有完全相同的视图,但只有不同的方法来配置它。
我尝试拨打dequeueReusableCellWithIdentifier(superclassIdentifier) as! subclass
,但会生成错误could not cast value of type superclass to subclass
。
如何正确地做到这一点?
答案 0 :(得分:0)
您应该将所有iBoutlet对象设置为文件的所有者而不是类名。现在我认为您连接到同一个类名。