I maintain an application for iOS. In the app, I use this library:
I have an issue of a Navigation Controller titlebar displaying as transparent since the last beta releases of iOS 15. I have succeeded in live fixing the issue using the Xcode "Capture View Hierarchy" issue and manually execute setBackgroundcolor with the UIView as the receiver, but I don't succeed to make the modification persistent because I don't succeed to get a reference to that particular UIView because of the cumbersome nature of the library and my lack of iOS programming skills. Any possible magic to reach an arbitrary subview in a complex UIView/UIViewController hierarchy ? I would imagine something like this:
func traverseSubviewsAndControllersHierarchy(_ view: UIView) -> String {
var tag: Int = 0
return ""
}
Thanks a lot for your interest.