Justin
06/09/2022, 11:25 PMmyKMPClass.publisher(for: \.someProperty)
.receive(on: RunLoop.main)
.map { $0 }
.assign(to: &$someSwiftPublisher)
...but when this code executes, the app crashes with this exception:
[NSKVONotifying_MyKMPClass setSomeProperty:] can't be overridden: it is final
Ultimately I just want to be able to react to changes on 'someProperty' from my Swift code. Anyone have a fix (or alternative to this approach)?Justin
06/10/2022, 3:22 AMopen
it doesn't crash