I want to export a Kotlin class to Objective/C, bu...
# kotlin-native
h
I want to export a Kotlin class to Objective/C, but the generated KotlinBase interface does not contains the default functions from `kotlin.Any`:
toString()
,
hashcode
,
equals
. Do I miss something?
r
If I am not mistaken these are mapped to the ObjC equivalent methods/propterties on NSObject (
description
,
hashValue
and
isEqual
).
🚀 1
h
Oh, you are right, thanks!