Hmmm. Is there an easy way to identify SwiftUI views on-screen at runtime?

I've gotten way too used to using tools like FLEX to be able to introspect views and view controllers onscreen to navigate the codebase haha.

I'm debating if using accessibilityIdentifier in debug builds would work for this.

@timoliver there isn't always a direct correlation between your code and what SwiftUI ends up building at runtime, so it's not as useful a thing to have as you might think. We had this same argument internally about adding SwiftUI support to @reveal (and continue to have a conversation about it once every month or two).

@tonyarnold Aha. I might have to admit the first thing I tried was opening up my app in Reveal. 😆

Hmm okay. I’ll keep poking then. Thanks Tony!