在TableViewCell中为每个单元格编辑两个不同的标签,可以通过自定义UITableViewCell来实现。以下是一种实现方式:
下面是一个示例代码:
import UIKit
class CustomTableViewCell: UITableViewCell {
var label1: UILabel!
var label2: UILabel!
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
label1 = UILabel()
label2 = UILabel()
contentView.addSubview(label1)
contentView.addSubview(label2)
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func layoutSubviews() {
super.layoutSubviews()
label1.frame = CGRect(x: 10, y: 10, width: contentView.frame.width - 20, height: 20)
label2.frame = CGRect(x: 10, y: 40, width: contentView.frame.width - 20, height: 20)
}
}
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
tableView = UITableView(frame: view.bounds, style: .plain)
tableView.dataSource = self
tableView.delegate = self
tableView.register(CustomTableViewCell.self, forCellReuseIdentifier: "Cell")
view.addSubview(tableView)
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 10
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CustomTableViewCell
cell.label1.text = "Label 1"
cell.label2.text = "Label 2"
return cell
}
}
在这个示例中,我们创建了一个自定义的UITableViewCell类CustomTableViewCell,其中包含了两个UILabel属性label1和label2。在初始化方法中,我们初始化了这两个UILabel,并将它们添加到cell的contentView上。在layoutSubviews方法中,我们设置了两个UILabel的位置和大小。在UITableView的数据源方法cellForRowAt中,我们使用自定义的UITableViewCell类来创建和复用cell,并设置两个UILabel的内容。
这样,每个单元格就可以显示两个不同的标签了。你可以根据需要修改UILabel的样式和位置。
领取专属 10元无门槛券
手把手带您无忧上云