Is there any way to interface with Objective C’s K...
# ios
g
Is there any way to interface with Objective C’s KVO system in Kotlin Native without writing Objective C / Swift? I’ve been able to add and remove observers in Kotlin, but I haven’t found a way to actually listen to changes.
observeValueForKeyPath
does exist on
NSObject
, but I can’t really do much with it because it’s an extension function.
t
g
That’s super helpful! Thank you!