在ios中怎么设置cell的style

在ios中怎么设置cell的style,第1张

可以利用Tabview的separatorStyle属性来设置,选择其中的UITableViewCellSeparatorStyleNone 可去除cell之间的下划线

self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone

UITableView * tableView = [[UITableView alloc] initWithFrame:CGRectMake(20, 20, 400, 300) style:UITableViewStylePlain]

tableView.separatorColor = [UIColor redColor]

tableView.separatorInset = UIEdgeInsetsMake(0,80, 0, 80) // 设置端距,这里表示separator离左边和右边均80像素

tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine

tableView.dataSource = self


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11080263.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-13
下一篇 2023-05-13

发表评论

登录后才能评论

评论列表(0条)

保存