gpt4 book ai didi

swift - 使用 SWIFT 以编程方式自定义 UITableViewCell

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

您可能会在附件中找到我尝试创建类似(右)UITableView 的图片(左)。它们看起来像按钮,但它们只是可以作为 tableview 单元格单击的单元格。

我尝试了很多不同的方法,包括在自定义单元格内添加容器窗口,在自定义单元格内添加 UIImage,但我就是无法复制这些单元格!

我试过使用自定义单元格类,我试过通过 IB 来做,但我太疯狂了,无法重新创建它。

谁能给我一个关于如何创建(单元格内)文本边界框/正方形的提示?用不同的背景颜色照明?

如果这可以通过 IB 轻松完成,我宁愿这样做,但如果您有一个示例 customcell 类可供我查看,我也将不胜感激!

failed attempt

感谢您花时间看我的问题。

最佳答案

我已经为您制作了接近您要求的 sample 。看一看 https://github.com/RajanMaheshwari/CustomTableCell

我想使用 UITableView 来做到这一点。我的方法是采用自定义单元格并添加一个 UIView,其中包含左右上下的一些约束。此外,我将为 UITableView 提供相同的背景颜色,UIView 是 super View 和单元格内容 View ,并且还制作 分隔符 >UITableViewNone 并且 TableCell 的选择为 None 这样 UI 看起来像

enter image description here

enter image description here

enter image description here

接下来,在应用每个约束并制作 CustomCell 和制作 IBOutlets 之后,我们将跳转到代码。

我将在 Custom Cell 的 awakeFromNib 方法中完成所有阴影和轮廓

这将是我的 CustomTableViewCell

class CustomTableViewCell: UITableViewCell {

@IBOutlet weak var labelBackgroundView: UIView!
@IBOutlet weak var cellLabel: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code

labelBackgroundView.layer.borderWidth = 0.5
labelBackgroundView.layer.borderColor = UIColor.lightGrayColor().CGColor
labelBackgroundView.layer.shadowColor = UIColor.lightGrayColor().CGColor
labelBackgroundView.layer.shadowOpacity = 0.8
labelBackgroundView.layer.shadowRadius = 5.0
labelBackgroundView.layer.shadowOffset = CGSizeMake(0.0, 2.0)
labelBackgroundView.layer.masksToBounds = false;
}

我有两个导出。

一个是您将在其中显示名称的标签。另一个是您要显示的带有一些轮廓和阴影的外部 View 。

ViewController 代码将是:

class ViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {

var array = [String]()

@IBOutlet weak var myTableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()

array = ["Wealth","Health","Esteem","Relationship"]

}


func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return array.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("CustomTableViewCell") as! CustomTableViewCell

cell.cellLabel.text = array[indexPath.row]
cell.labelBackgroundView.tag = indexPath.row
cell.labelBackgroundView.userInteractionEnabled = true

let tapGesture = UITapGestureRecognizer(target: self, action: #selector(cellViewTapped))
cell.labelBackgroundView.addGestureRecognizer(tapGesture)

return cell
}


func cellViewTapped(sender:UITapGestureRecognizer) {

let view = sender.view
let index = view?.tag
print(index!)
}
}

这里我没有使用 UITableViewDelegatedidSelectIndex,因为我只想点击 Outlining LabelBackgroundView 而不是完整的单元格。

所以最后的结果是这样的

enter image description here

关于swift - 使用 SWIFT 以编程方式自定义 UITableViewCell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38626243/

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