码迷,mamicode.com
首页 > 其他好文 > 详细

打印控件子视图

时间:2014-12-16 18:55:19      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   io   color   sp   for   on   div   

1 - (void)explode:(id)aView level:(int)aLevel {
2          for (int i = 0; i < aLevel; i++)
3                    printf("-");
4          printf("%s:%s/n",[[[aView class] description] UTF8String],[[[aView superclass] description] UTF8String]);
5         
6          for(UIView *subview in [aView subviews])
7                    [self explode:subview level:(aLevel + 1)];
8 }

打印控件子视图

打印控件子视图

标签:des   style   blog   io   color   sp   for   on   div   

原文地址:http://www.cnblogs.com/csdnIOS/p/4167599.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!