iOS 打印 UI结构
时间:2014-10-29 19:13:29
收藏:0
阅读:333
NSLog(@"------------%@",[[UIApplication sharedApplication].keyWindow performSelector:@selector(recursiveDescription)]);
由于recursiveDescription是Apple的私有API,你在Document中找不到该API。 同样的,你无法通过 [self.view recursiveDescription]来调用,这样会编译失败。
原文:http://www.cnblogs.com/lovelanjuan/p/4060063.html
评论(0)