is there a simple tutorial on how to call function...
# multiplatform
j
is there a simple tutorial on how to call functions from the shared module in Swift code? I found this, but it's too complex for me https://kotlinlang.org/docs/native-objc-interop.html
j
I was looking for a bit more detail than that, like how use different Kotlin files. I ended up figuring out that dots are replaced with underscores, so in order to use
MainViewController.ios.kt
I needed to write
MainViewController_iosKt
in Swift