gpt4 book ai didi

ios - 更改 UITableViewCell 上 accessoryView 的大小

转载 作者:行者123 更新时间:2023-12-05 03:48:45 31 4
gpt4 key购买 nike

如何使用 Swift 更改 UITableViewCell 上的 accessoryView 的大小?

最佳答案

这可以在 UITableViewcellForRowAt 方法中完成:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "customCellID", for: indexPath) as! CustomTableCell
cell.accessoryView = UIImageView(image: "imageName")

// This is where the magic happens
cell.accessoryView?.bounds = CGRect(x: 0, y: 0, width: 50, height: 50)
return cell
}

关于ios - 更改 UITableViewCell 上 accessoryView 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64236492/

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