Goal:
Get the view hierarchy into an instance of the NSString
Code:
+ (void)dumpViewHierarchy {
UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow];
NSString *recursive = [keyWindow recursiveDescription];
}
Error:
No visible @interface for 'UIWindow' declares the selector 'recursiveDescription'