Is it possible to hook into an objc observer using...
# kotlin-native
s
Is it possible to hook into an objc observer using Kotlin? I need to observe the % of a download task and route it’s current value to a Flow. Can’t seem to find out how to do it.
c
Possibly using a callback flow?
s
how?
So I’m actually using a callback flow that I’d like to hook it to currently. The problem is, getting the observation to happen
s
Are you trying to use KVO?
s
yes - I am