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

iOS tabview 适配问题

时间:2014-06-28 13:58:23      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   2014   os   

ios7的UITableView实现ios6的圆角效果

iOS7 UITableView做成类似iOS6风格

在iOS7的时候我们会发现cell的默认线条会向右偏移,使左边空出了一些位置,这时候我们可以调用如下的方法来解决。这样我们的cell就会和iOS6前的一样铺满整个宽度了。

if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) {
    [tableView setSeparatorInset:UIEdgeInsetsZero];
}



去掉tableview中头部和底部无用的分割线

    UIView *view = [UIView new];
    view.backgroundColor = [UIColor clearColor];
    [tableView setTableFooterView:view];
    [tableView setTableHeaderView:view];
    [view release];
 

去掉tableview中cell的边框的简单方法

实很简单,把backgroundView设置为一个空的View,然后就干净了

    UIView *tempView = [[UIView alloc] init];  

    [cell setBackgroundView:tempView];  

    [cell setBackgroundColor:[UIColor clearColor]];  

 

//去除tableView的分割线

  self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

[CenterTableView setSeparatorInset:UIEdgeInsetsMake(-5,0,0,0)];

 [CenterTableView setSeparatorInset:UIEdgeInsetsZero];

 http://www.it165.net/pro/html/201402/9204.html

ios tableview 那些事(二十) ios7 分割线短 15 像素

iOS tabview 适配问题,布布扣,bubuko.com

iOS tabview 适配问题

标签:style   blog   http   color   2014   os   

原文地址:http://www.cnblogs.com/hl666/p/3798407.html

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