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

改变iOS7上tableview的分割线长、颜色问题

时间:2014-07-31 13:32:06      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   io   问题   cti   ar   amp   

# 改变iOS7上tableview的分割线长、颜色问题

    if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {

        [self.tableView setSeparatorInset:UIEdgeInsetsZero];

        [self.tableView setSeparatorColor:kGetColor(18.0, 18.0, 18.0)];

    }

#去掉UITableView中的某cell条分割线

        if (cell == nil) {

            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];

            [cell setSeparatorInset:UIEdgeInsetsMake(0, 0, 0, 10000000)]; 

        }

#或

        if (indexPath.section == 0 && indexPath.row == 1) {

[cell setSeparatorInset:UIEdgeInsetsMake(0, 0, 0, 10000000)]; 

        }


改变iOS7上tableview的分割线长、颜色问题,布布扣,bubuko.com

改变iOS7上tableview的分割线长、颜色问题

标签:style   color   os   io   问题   cti   ar   amp   

原文地址:http://blog.csdn.net/alincexiaohao/article/details/38312753

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