Derek Ellis
06/16/2020, 4:21 PMArtyom Degtyarev [JB]
06/17/2020, 6:43 AM@OverrideInit
annotation would help here.Derek Ellis
06/17/2020, 9:15 PMObjCSuper (initWithSomething)
^
|
ObjC (does not override initWithSomething)
^
|
Kotlin (initWithSomething not implemented!)
@OverrideInit
does work, but since the missing initializer deals with other native C++ code from an external library, it's not ideal to have to re-implement it in the Kotlin subclass. Is there any way around this?Artyom Degtyarev [JB]
06/18/2020, 6:14 AM@OverrideInit constructor(something: Something) : super(something)
?