码迷,mamicode.com
首页 > 移动开发 > 详细

ios中注意项

时间:2014-06-04 19:04:15      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:c   class   blog   code   a   int   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
1.当导入第三方库出现不支持ARC模式,可以在项目-》Build Phases中对第三方类文件添加Compiler Flags(-fno-objc-arc)
 
2.获取UITableViewCell中所有子控件
// 获取当前tableView中的所有cell
NSArray *array = [self.tableView visibleCells];
for (NSInteger i = 0; i < array.count; i++) {
       // 判断是否是自定义的chatBgCell
        if ([[array[i] class] isSubclassOfClass:[chatBgCell class]]) {
            // 获取cell中所有子控件
            NSArray *array1 = [[array[i] contentView] subviews];
            for (UIImageView *im in array1) {
                if (im.subviews) {
                    for (UIImageView *imSub in im.subviews) {
                        if ([imSub.class isSubclassOfClass:[UIImageView class]]) {
                            [imSub removeFromSuperview];
                        }
                    }
                }
            }
        }
    }

  

ios中注意项,布布扣,bubuko.com

ios中注意项

标签:c   class   blog   code   a   int   

原文地址:http://www.cnblogs.com/M2Lan/p/3759455.html

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