Hello - I am wondering if doing something like the following would keep an app out of the app store. I need to ignore Apple internal classes that are in the view hierarchy:
(subview is the current view as a traverse the view tree)
let className = String(describing: type(of:subview.self))
if !className.starts(with: "_") {
/// do something here
}
Thanks!