IOS 基础之设置 tableview 的分割线
更新时间:2017年03月30日 09:29:28 投稿:lqh
这篇文章主要介绍了IOS 基础之设置 tableview 的分割线的相关资料,需要的朋友可以参考下
ios tableView 设置 tableview 的分割线
实现效果图:
[tableview setSeparatorColor:[UIColor blueColor]]; //设置分割线为蓝色
隐藏UITableViewCell的分隔线
[self.myTableView setSeparatorStyle:UITableViewCellSeparatorStyleNone]; UITableViewCellSeparatorStyle有如下几种 typedef NS_ENUM(NSInteger, UITableViewCellSeparatorStyle) { UITableViewCellSeparatorStyleNone, UITableViewCellSeparatorStyleSingleLine, UITableViewCellSeparatorStyleSingleLineEtched // This separator style is only supported for grouped style table views currently };
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
相关文章
iOS 11 使用两种方法替换(Method Swizzling)去掉导航栏返回按钮的文字
这篇文章主要介绍了iOS 11 使用方法替换(Method Swizzling)去掉导航栏返回按钮的文字,需要的朋友可以参考下2018-05-05
最新评论