Is there a way in `iosMain` to retrieve a `ObjCCla...
# multiplatform
m
Is there a way in
iosMain
to retrieve a
ObjCClass
of a class? I know how to do it in reverse using
getOriginalKotlinClass()
, which will give me a
KClass
from a
ObjCClass
. I also know how to retrieve it for some objc class, for example with `NSString.`class()``. But let’s say I have kotlin code:
Copy code
class Foo

fun giveMeObjC() = Foo::class.[what to do here?]
Thanks!