gpt4 book ai didi

ios - tableView imageView 内容模式不起作用?

转载 作者:行者123 更新时间:2023-11-29 01:17:10 25 4
gpt4 key购买 nike

我有一个图像,它在表格行内,我试图通过执行 height/2 使它变圆

cell.imageView.frame.height/2

所以问题是当我尝试将图像插入单元格时,图像不会改变其大小,我的代码如下所示

let named = "avatar.png"
let imageName = UIImage(named: named)
cell.imageView?.image = imageName
cell.backgroundColor = UIColor.clearColor()
if(tableArray[indexPath.row] == "avatar"){
cell.imageView!.frame = CGRectMake(0,0,10,10)
cell.imageView?.layer.borderWidth = 1
cell.imageView?.layer.masksToBounds = true
cell.imageView?.layer.borderColor = UIColor.blackColor().CGColor
cell.imageView?.layer.cornerRadius = cell.imageView!.frame.height/2
cell.imageView?.clipsToBounds = true
cell.imageView?.contentMode = .ScaleAspectFit
}

我已经尝试了很多从谷歌到 stackoverflow 的建议,但无法解决问题,有人可以帮忙吗?

最佳答案

您不能更改默认 UITableViewCell 中存在的 ImageView 的大小,如果您想更改 ImageView 的大小,则需要采用自定义 UITableViewCell 。

关于ios - tableView imageView 内容模式不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35032347/

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