gpt4 book ai didi

ios - 如何为 UITableView 部分创建自定义背景?

转载 作者:行者123 更新时间:2023-11-28 05:41:55 25 4
gpt4 key购买 nike

我正在尝试为我的表格 View 部分创建自定义背景。我想要的外观是这样的:The section itself has rounded corners, but each cell doesn't.

请问如何自定义 tableview 部分背景/图层,而不仅仅是单个单元格?

编辑:澄清一下——我说的是“最新交易”下的白色背景。因此该部分的顶部是圆形的(底部也是),但所有行都是矩形的。

最佳答案

创建 UITableViewCell 子类并添加一个白色的 UIView。将 View 的左右填充添加到单元格。将 UILabel 和其他 UI 元素添加到这个新添加的 View 中,而不是添加到 cell 或其 contentView 中。将 cell 背景颜色设置为 UIColor.groupTableViewBackground

class CustomCell: UITableViewCell {

let bgView = UIView()
let label = UILabel()

override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
commonInit()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
commonInit()
}
func commonInit() {

backgroundColor = .groupTableViewBackground

bgView.backgroundColor = .white
bgView.translatesAutoresizingMaskIntoConstraints = false
addSubview(bgView)

label.translatesAutoresizingMaskIntoConstraints = false
bgView.addSubview(label)

bgView.topAnchor.constraint(equalTo: topAnchor).isActive = true
bgView.bottomAnchor.constraint(equalTo: bottomAnchor).isActive = true
bgView.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 10).isActive = true
bgView.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -10).isActive = true

label.heightAnchor.constraint(equalToConstant: 30).isActive = true
label.topAnchor.constraint(equalTo: bgView.topAnchor, constant: 5).isActive = true
label.bottomAnchor.constraint(equalTo: bgView.bottomAnchor, constant: -5).isActive = true
label.leadingAnchor.constraint(equalTo: bgView.leadingAnchor, constant: 5).isActive = true
label.trailingAnchor.constraint(equalTo: bgView.trailingAnchor, constant: -5).isActive = true
}
}

在您的tableView 中使用这个单元格类。并将 View Controller 背景颜色和 tableView 背景颜色设置为 UIColor.groupTableViewBackground

cellForRowAt 中检查单元格是该部分的第一个还是最后一个单元格。如果它是该部分的第一个单元格,则将圆角半径应用于左上角和右上角。如果该单元格是该部分的最后一个单元格,则将圆角半径应用于左下角和右下角。如果单元格位于中间,则移除圆角半径。

class TableViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
tableView.backgroundColor = .groupTableViewBackground
tableView.register(CustomCell.self, forCellReuseIdentifier: "CustomCell")
tableView.separatorInset = UIEdgeInsets(top: 0, left: 20, bottom: 0, right: 10)
tableView.tableFooterView = UIView()
}
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int {
return 2
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return "Section \(section) Title"
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 4
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CustomCell") as? CustomCell
?? CustomCell(style: .default, reuseIdentifier: "CustomCell")
if indexPath.row == 0 {//first cell of this section
cell.bgView.layer.cornerRadius = 15.0
cell.bgView.layer.masksToBounds = true
cell.bgView.layer.maskedCorners = [.layerMinXMinYCorner, .layerMaxXMinYCorner]
} else if indexPath.row == tableView.numberOfRows(inSection: indexPath.section)-1 {//last cell of this section
cell.bgView.layer.cornerRadius = 15.0
cell.bgView.layer.masksToBounds = true
cell.bgView.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner]
} else {
cell.bgView.layer.cornerRadius = 0
}
cell.label.text = "Row \(indexPath.row)"
return cell
}
}

enter image description here

关于ios - 如何为 UITableView 部分创建自定义背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56341543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com