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

UITableView的常用属性和cell的内存优化

时间:2014-06-04 14:34:53      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

UITableView的常用属性:

分割线颜色设置:

1》 设置separatorStyle: 分割线的颜色

方法:tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;

2》 设置separatorColor 不用系统枚举的值,自己设定颜色的值

     24bitRGB

     R:8bit

     G:8bit

     B:8bit

=========== 

     32bitRGBA

     R:8bit

     G:8bit

     B:8bit

     A:8bit 表示透明度alpha

     # ff ff ff     

     设置值的时候用三原色的值比/255.0,这个结果是一个比值

方法:tableView.separatorColor = [[UIColor alloc] initWithRed:255/255.0 green:0/255.0 blue:0/255.0 alpha:255/255.0];

3》 tableView的其他属性 整个tableViewheaderfooter

    tableView.tableFooterView = [[UISwitch alloc] init]; // 底部

    tableView.tableHeaderView = [[UIProgressViewalloc] init]; // 头部

************************************************************************

cell:内存的优化

当我们用tableView得cell显示数据的时候,有时候数据量很大,如果不处理内存,我们向下或者向上滑动的时候

会不停的开辟存储空间;

处理代码:

bubuko.com,布布扣
 1 // 每行显示的内容是什么
 2 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 3 {
 4     
 5     // 为我们创建的每个cell加标记
 6     static NSString *identity = @"hero";
 7     // 在创建cell时先从缓存迟中找被标记过的cell,当然这个缓存池是tableView创建的
 8     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identity];
 9     
10     // 如果找不到,在创建带标记的cell
11     if (cell == nil) {
12         cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identity];
13     }
14     
15     // 然后再给每个cell设置数据
16     CXBheorsModel *models = self.heros[indexPath.row];
17     cell.textLabel.text = models.name;
18     cell.detailTextLabel.text = models.intro;
19     cell.imageView.image = [UIImage imageNamed:models.icon];
20     
21     // 当每个cell移出界面时,tablView会自动把它放入缓存池
22     return cell;
23     
24 }
bubuko.com,布布扣

 

 

UITableView的常用属性和cell的内存优化,布布扣,bubuko.com

UITableView的常用属性和cell的内存优化

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/cxbblog/p/3765032.html

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