Using CustomReflectable To Debug a SwiftUI View Whenever It Refreshes
Daily Coding Tip 109

When you print the value of a variable, you don’t necessarily get useful information. I created a SwiftUI app project called PrintChanges. If I try to print the value of ContentView, the default View, all I get back is PrintChanges.ContentView.
I can call dump(self), but this gives me far too much information.
There is …


