gpt4 book ai didi

ios - 具有圆形边框的 tableview xcode swift

转载 作者:行者123 更新时间:2023-11-28 14:51:16 24 4
gpt4 key购买 nike

我创建了一个带有自定义原型(prototype)单元格的表格 View ,但我需要调整边框的形状,这就是我现在的图像

the one i get when i run the app

this is the prototype cell

请注意,我为 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.
}
}

最佳答案

使用 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
}

}

Example

关于ios - 具有圆形边框的 tableview xcode swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49835240/

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