ribesg
09/14/2020, 2:48 PM@ExportObjCClass
class CandidateInfoUITableViewCell @OverrideInit constructor(
style: UITableViewCellStyle = UITableViewCellStyle.UITableViewCellStyleDefault,
reuseIdentifier: String? = null
) : UITableViewCell(style = style, reuseIdentifier = reuseIdentifier) {
...
Error:
...CandidateInfoUITableViewCell.kt: (24, 5): constructor with @OverrideInit doesn't override any super class constructor.
It must completely match by parameter names and types.
I don’t understand. This compiled in 1.3.61 and the parameter names are the right type and names. IDEA doesn’t even show any error.ribesg
09/15/2020, 11:28 AM