标签:style blog http color 2014 os
iOS7 UITableView做成类似iOS6风格
在iOS7的时候我们会发现cell的默认线条会向右偏移,使左边空出了一些位置,这时候我们可以调用如下的方法来解决。这样我们的cell就会和iOS6前的一样铺满整个宽度了。
if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) { [tableView setSeparatorInset:UIEdgeInsetsZero]; }
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];
iOS tabview 适配问题,布布扣,bubuko.com
标签:style blog http color 2014 os
原文地址:http://www.cnblogs.com/hl666/p/3798407.html