上海启嘟渡科技商贸有限公司
SEARCH

与我们合作

我们专注提供互联网一站式服务,助力企业品牌宣传多平台多途径导流量。
主营业务:网站建设、移动端微信小程序开发、营销推广、基础网络、品牌形象策划等

您也可通过下列途径与我们取得联系:

微 信: wxyunyingzhe

手 机: 15624122141

邮 箱:

uitableview 怎样获取指定分割线 并且设置颜色

更新时间:2025-01-09 06:08:56

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的高度设为一致。

多重随机标签

猜你喜欢文章

QQ客服 电话咨询