让 UITableView imageView 变成正方形?
我有一个应用程序,它将在用户拍照后填充 UITableView。
UITableViewCell 的图像是用户拍摄的照片。我希望这些图像是正方形的。
我已经尝试了几乎所有的方法,这里有一些代码:
UIImage *theImage = [UIImage imageNamed:theImagePath];
cell.imageView.contentMode = UIViewContentModeScaleAspectFill;
cell.imageView.image = theImage;
谢谢! 库尔顿
I have a app that will populate a UITableView after the user takes a picture.
The UITableViewCell's image is that picture that the user takes. I would prefer these images to be square.
I have tried just about everything, here's some code:
UIImage *theImage = [UIImage imageNamed:theImagePath];
cell.imageView.contentMode = UIViewContentModeScaleAspectFill;
cell.imageView.image = theImage;
Thanks!
Coulton
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种选择是传入方形图像:
您可能只想对每个图像执行一次此操作,然后缓存结果。
one option would be to pass in a square image:
you would probably want to only do this once for each image, and then cache the result.