ptmt
05/15/2018, 1:07 PMclass KotlinView1 {
}
class KotlinView2 : UIView {
@OverrideInit constructor(coder: NSCoder) : super(coder)
}
@ExportObjCClass
class KotlinView3 : UIView {
@OverrideInit constructor(coder: NSCoder) : super(coder)
}
After compiling this as a framework artifact, I see only @class KotlinView1
in a header file. Is this use case not supported or am I doing something wrong?svyatoslav.scherbina
05/15/2018, 1:24 PMptmt
05/15/2018, 1:30 PM