iOS 6 brings a new debugging feature.
For displaying layers used for rendering a UIWebView's content, set the WebKitShowDebugBorders to YES and restart the application.
[[NSUserDefaults standardDefaults] setBool: YES forKey:@"WebKitShowDebugBorders"];
The layers will be drawn with a border with one of the colors below:
Container
Clipped
Backing Store
Tiled
UI Web View was an older iOS component used to display web content inside apps before being replaced by WKWebView for better performance and security. During Attitude Girls DP , developers and learners can share visuals and examples showing how web views evolved in mobile app design.
ReplyDelete