uitableview 怎样获取指定分割线 并且设置颜色
UITableView的分割线(separator)是私有类,应该是无法获取的。
不过你可以通过tableView的属性修改它:
UITableView*tableView=[[UITableViewalloc]initWithFrame:CGRectMake(20,20,400,300)style:UITableViewStylePlain];tableView.separatorColor=[UIColorredColor];
tableView.separatorInset=UIEdgeInsetsMake(0,80,0,80);//设置端距,这里表示separator离左边和右边均80像素
tableView.separatorStyle=UITableViewCellSeparatorStyleSingleLine;
tableView.dataSource=self;
如此设置后的tableView是这样的:(左右空出了80像素)
如果你想设置单个分割线的颜色,那就自己画分割线吧。你可以用coreGraphics,也可以用UIView,这里用UIView来画:
UITableView*tableView=[[UITableViewalloc]initWithFrame:CGRectMake(20,20,400,300)style:UITableViewStylePlain];tableView.separatorStyle=UITableViewCellSeparatorStyleNone;//这样就不会显示自带的分割线
tableView.dataSource=self;
for(inti=0;i<8;i++){
UIView*separator=[[UIViewalloc]initWithFrame:CGRectMake(10,(i+1)*40/*i乘以高度*/,380,1)];
separator.backgroundColor=[UIColorcolorWithRed:0.03*igreen:0.05*iblue:0.1*ialpha:1];
[tableViewaddSubview:separator];
}
[selfaddSubview:tableView];
效果:
滚动正常
当然,为了和谐,你应该把自定义的separator的间隔和cell的高度设为一致。
多重随机标签