iOS7 's UITableView achieves ios6 fillet effect
IOS7 UITableView made similar iOS6 style
In the iOS7 we will find that the cell's default line will be shifted to the right, leaving some positions on the left, which we can call the following method to resolve. This way our cell will be as full as the width of the iOS6 before.
if ([TableView respondstoselector: @selector (setseparatorinset:)]) { [TableView setseparatorinset: Uiedgeinsetszero];}
Remove the useless split line from the head and bottom of the tableview UIView *view = [UIView new];
View.backgroundcolor = [Uicolor Clearcolor];
[TableView Settablefooterview:view];
[TableView Settableheaderview:view];
[View release]; The simple way to remove the cell's border from the TableView is simply to set the Backgroundview to an empty view, and then it's clean.
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 those things (20) iOS7 Split line short 15 pixels