```class KotlinView1 { } class KotlinView2 : UIV...
# kotlin-native
p
Copy code
class 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?
s
This use case is not supported yet, i.e. Kotlin classes extending Objective-C classes aren’t directly visible from (=exported to) Objective-C code.
p
thanks!