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

UITableView中cell边框和背景设置最佳方案

时间:2014-08-05 14:02:49      阅读:409      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   java   os   io   for   

UITableView是iOS开发中最常用的视图控件,在平常用的iOS App中大部分都用到了UITableView。

需求很简单,就是在一个UITableView里面实现一个不一样的UITableViewCell,如下图里的“切换账号”按钮

bubuko.com,布布扣

正常情况下grouped样式(UITableViewStyleGrouped)UITableViewCell都是有边框的,所以如果只是用addSubView添加一个按钮的话,就会有边框在外面,不符合要求,也想过用一个大的图片,把这个cell给盖住,但是感觉这方案不够好,早上找Qzone项目组的同事问了下,他们是用的一个Plain样式的,那些圆角是用的图片,感觉还是不够好,更优美的方案应该是:

  

  1. UIView *tempView = [[UIView alloc] init];  
  2. [cell setBackgroundView:tempView];  
  3. [cell setBackgroundColor:[UIColor clearColor]];   

实很简单,把backgroundView设置为一个空的View,然后就干净了。看了下UITableViewCell的文档,backgroundView在plain-style的TableView里面是nil,在grouped-style的TableView里面并不是空的,所以这里人为置空一下就ok了,这是目前为止我见到的最优美的解决方案。

 

如果要自定义cell的颜色,应该定义cell的contentview的颜色,并将它的上面的子视图的颜色设置为clear。可以在

  

  1. (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {   
  2.    if (indexPath.row % 2)  
  3.    {  
  4.         [cell setBackgroundColor:[UIColor colorWithRed:.8 green:.8 blue:1 alpha:1]];  
  5.    }else {  
  6.     [cell setBackgroundColor:[UIColor clearColor]];  
  7.    }  
  8.    cell.textLabel.backgroundColor = [UIColor clearColor];  
  9.    cell.detailTextLabel.backgroundColor = [UIColor clearColor];  
  10. }  

当然也可以在(UITableViewCell *) tableView: (UITableView *) tableView cellForRowAtIndexPath: (NSIndexPath *) indexPath { ... }中进行设置。

 

原文地址:http://blog.csdn.net/sirchenhua/article/details/7294913

UITableView中cell边框和背景设置最佳方案,布布扣,bubuko.com

UITableView中cell边框和背景设置最佳方案

标签:style   blog   http   color   java   os   io   for   

原文地址:http://www.cnblogs.com/ranger-jlu/p/3892046.html

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