Does anyone know how to properly override Obj-C de...
# multiplatform
k
Does anyone know how to properly override Obj-C delegate, where some its
open
functions have the same signature?
r
Kotlin/Native should correctly disambiguate them by parameter name
k
I’ve added a
@Suppress("CONFLICTING_OVERLOADS")
to suppress warnings, but I assume K/N will do the job, right?
r
Oh yeah you might need to explicitly suppress that
I haven't had to do this in a little while
so yeah, add the suppression and you should be fine
k
sounds good, thanks Russell
👍 1