gpt4 book ai didi

ios - 根据图像大小调整 UIImageView 的大小?

转载 作者:行者123 更新时间:2023-11-28 18:10:59 26 4
gpt4 key购买 nike

在 IB 中,我们可以使用 command =UIImageView 的大小调整为图像的原始大小。我需要以编程方式进行。我使用了 contentMode 但它会调整图像本身的大小以匹配 IB 中设置的 UIImageView 大小。编辑:我试过了

UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:@"ScanToVerifyCell" forIndexPath:indexPath];
STOScanToVerifyCell * verifyCell = (STOScanToVerifyCell *)cell;
[verifyCell.scanStatusImage setHidden:NO];
[verifyCell.scanStatusImage setImage:[UIImage imageNamed:@"point.png"]];
[verifyCell.scanStatusImage sizeToFit];

但它不起作用。我在做什么?

最佳答案

verifyCell.scanStatusImage.contentMode = UIViewContentModeScaleAspectFit;

verifyCell.scanStatusImage .clipsToBounds = YES;

[verifyCell.scanStatusImage sizeToFit];

希望这对你有帮助......!

关于ios - 根据图像大小调整 UIImageView 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20089773/

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