调整 UITableView 中 imageView 的大小

发布于 2024-10-09 07:16:59 字数 130 浏览 3 评论 0原文

我创建了一个分组表视图,我注意到将图像放置在 imageView 中会导致图像太大。它与单元格的圆形边框重叠,这很可怕。我尝试寻找一种调整其大小的方法,但发现许多答案不太令我满意。你会怎么做?最简单的方法是什么?我发现的解决方案异常复杂。 谢谢!

I Created a grouped table view, and I noticed that placing an image in the imageView results in an image that is too large. It overlaps the rounded borders of the cell, which is horrible. I tried looking for a way to resize it, but I found many answers that didn't quite satisfy me. How would you do this? Which is the simplest way to go? The solutions I found where strangely complicated.
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

╰ゝ天使的微笑 2024-10-16 07:16:59

其他解决方案并不令我满意。我发现的唯一好的解决方案是这个。您可以调整传递给 UIImageView 的 UIImage 的大小。

The other solutions didn't satisfy me. The only good solution I found is this. You can resize the UIImage which is passed to the UIImageView.

一世旳自豪 2024-10-16 07:16:59

最简单的方法是在 Interface Builder 中进行。选择您的UIImegeView并转到Inspector 1视图,您可以在此处看到View/Mode,选择ScaleAspectFitScaleToFill

否则通过代码来完成:

imageView.contentMode = UIViewContentModeScaleAspectFit;

或者

imageView.contentMode = UIViewContentModeScaleToFill;

The easy way is doing in Interface Builder. Select your UIImegeView and go to the Inspector 1 view, yo can see View/Mode here choose ScaleAspectFit or ScaleToFill.

Else do it by code:

imageView.contentMode = UIViewContentModeScaleAspectFit;

or

imageView.contentMode = UIViewContentModeScaleToFill;
一场信仰旅途 2024-10-16 07:16:59

抱歉,我犯了一个错误。首先将图像添加到表格视图单元格:

cell.imageView.image = [UIImage imageNamed:@"image.png"]; 

然后设置内容模式:

cell.imageView.contentMode = UIViewContentModeScaleAspectFit;

cell.imageView.contentMode = UIViewContentModeScaleToFill;

Sorry I made a mistake. First add you image to the tableview cell:

cell.imageView.image = [UIImage imageNamed:@"image.png"]; 

then set the content mode:

cell.imageView.contentMode = UIViewContentModeScaleAspectFit;

or

cell.imageView.contentMode = UIViewContentModeScaleToFill;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文