我创建了一个带有自定义原型单元格的表视图,但我需要对边框进行整形,这是我现在拥有的图像
the one i get when i run the app
请注意我为tableviewcell创建了一个新类,我在其中添加了一个要从列表中更改的文本字段
我想设置角半径 我试图添加此代码,
layer.cornerRadius = 10
和
layer.masksToBounds = true
在用户定义的运行时属性中,就像我之前为按钮所做的那样,但它不起作用
以下是代码:
import UIKit
class ListOffersViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
let profil = ["Eric","Eric","Eric","Eric","Eric","Eric"]
public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return profil.count
}
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! ListOffersViewControllerTableViewCell
cell.profilName.text = profil[indexPath.row]
return cell
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
答案 0 :(得分:1)
使用UITableViewCell时请注意。您可以使用contentView进行UI功能。 这是一个例子。
class ViewController: UITableViewController {
let identifier = "roundedCell"
override func viewDidLoad() {
super.viewDidLoad()
tableView.register(UITableViewCell.self, forCellReuseIdentifier: identifier)
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 10
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: identifier, for: indexPath)
cell.textLabel?.text = "\(indexPath)"
return cell
}
override func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
cell.backgroundColor = .red
cell.contentView.backgroundColor = .blue
cell.contentView.layer.cornerRadius = 10.0
}
}
答案 1 :(得分:0)
尝试在单元格上添加UIView并设置约束,使其与单元格大小相同。将所有设计对象放在该视图中。将该视图连接到单元格文件,然后将角半径添加到该视图。确保将单元格视图背景设置为透明,并将颜色添加到新的UIView。