I am working on a project where screen_view is collected automatically on all views/screens.
Problem is in some cases especially since we’re using RxSwift, sometimes the screen_view will fire after some events on the new screen that we’re interested in have fired, so from an analytics point of view we end up having the wrong screen_view for the wrong events.
So my question is, is there a way to get notified whenever a new screen_view has fired? Maybe through notification center, Combine, or closures?
Thanks!
PS: Oh I almost forgot, I am talking about iOS in Swift.