如何在tableView中更改分隔符的颜色?

时间:2019-07-02 07:35:53

标签: ios swift uitableview

我目前正在[<template> <b-container > <b-row align-h="center" class="mt-5" > <b-col cols="12" sm="8" md="6" lg="4" style="padding-top:10px;"> <b-card header="Login" align="center" id="Card"> <b-form> <b-form-group> <b-form-input type="text" required placeholder="User Name"> </b-form-input> </b-form-group> <b-form-group id="input-group-2" > <b-form-input type="password" required placeholder="Password" ></b-form-input> </b-form-group> <b-button variant="outline-success" type="submit">Submit</b-button> </b-form> </b-card> </b-col> </b-row> </b-container> </template> <script> export default { data() { return { form: { password: '', name: '' } } } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style> html{ background: url(../assets/10.jpg); /* Background image */ height: 100%; width: 100%; } </style>][1] 内创建collectionView单元格,但是我想使用默认分隔符将每个TableViewCell分隔开,但要更改其颜色。请帮我解决一下这个。还是可以删除所有分隔线并使用自定义TableViewCell分隔它们?

2 个答案:

答案 0 :(得分:5)

使用所需的separatorColor实例简单地更新tableView的{​​{1}}属性。

UIColor

如果要通过tableView.separatorColor = .red 更新它,可以使用storyboard 属性检查器

enter image description here

答案 1 :(得分:1)

您还可以从情节提要中设置spacerColor。

enter image description here