首页 > 代码库 > iOS 打印 UI结构

iOS 打印 UI结构

NSLog(@"------------%@",[[UIApplication sharedApplication].keyWindow performSelector:@selector(recursiveDescription)]);

 

由于recursiveDescription是Apple的私有API,你在Document中找不到该API。 同样的,你无法通过 [self.view recursiveDescription]来调用,这样会编译失败。

 

iOS 打印 UI结构