swift 3 的单元格上的详细信息披露更改颜色
Detail Disclosure change color on the cell with swift 3
我有一个问题,如何将颜色按钮从蓝色更改为白色(在 table 视图单元格上有详细披露?)我尝试更改该按钮上的图像,但它隐藏了箭头单元格右侧请帮助我
以下是我的代码:
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell") as? MovieDownloadedTableViewCell
if let cell = cell {
cell.accessoryView = nil
cell.accessoryView = UIImageView(image: UIImage(named: "info"))
}
}
非常感谢
要将 detailDisclosureButton
更改为白色,您需要将 UITableViewCell
的 tintColor
设置为 white
。因此,将单元格的 tintColor 设置为白色,您可以在界面构建器中或在 cellForRowAt
方法中这样设置。
cell.tintColor = .white
我有一个问题,如何将颜色按钮从蓝色更改为白色(在 table 视图单元格上有详细披露?)我尝试更改该按钮上的图像,但它隐藏了箭头单元格右侧请帮助我
以下是我的代码:
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell") as? MovieDownloadedTableViewCell
if let cell = cell {
cell.accessoryView = nil
cell.accessoryView = UIImageView(image: UIImage(named: "info"))
}
}
非常感谢
要将 detailDisclosureButton
更改为白色,您需要将 UITableViewCell
的 tintColor
设置为 white
。因此,将单元格的 tintColor 设置为白色,您可以在界面构建器中或在 cellForRowAt
方法中这样设置。
cell.tintColor = .white