Any Kotlin classes that I define which derive from...
# ios
d
Any Kotlin classes that I define which derive from ObjC (NSObject based) are not showing up in my Framework header - what am I doing wrong?
s
This behaviour is intentional. What are you trying to achieve?
d
I have defined a
UIViewController
in Kotlin and wish to reference it as the View Controller class in a XIB / Storyboard. This is a common iOS workflow. Since it's excluded from headers, the class becomes effectively private and inaccessible. Not sure why this would be intentional?