OGeek|极客世界-中国程序员成长平台

标题: ios - 中心和纵横比适合图像 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 09:22
标题: ios - 中心和纵横比适合图像

目前我似乎无法同时设置 2 种内容模式。但我希望图像既缩放又居中。我该如何做到这一点?

@property (weak, nonatomic) IBOutlet UIView *windowOut;

self.windowOut.layer.borderColor = [UIColor redColor].CGColor;
self.windowOut.layer.borderWidth = 3.0f;

UIImage *face = [UIImage imageNamed"face.png"];

UIImageView* imageView = [[UIImageView alloc] initWithFrame:self.windowOut.frame];
imageView.contentMode = UIViewContentModeScaleAspectFit;
imageView.contentMode = UIViewContentModeCenter;

[imageView setImage:face];
[self.windowOut addSubview:imageView];

这张图片是上面代码的结果: enter image description here

这个图片是"imageView.contentMode = UIViewContentModeCenter; "被注释掉: enter image description here

编辑: 此图像是我注释掉两个 contentModes 时的结果: enter image description here



Best Answer-推荐答案


不居中的原因在这里:

UIImageView* imageView = [[UIImageView alloc] initWithFrame:self.windowOut.frame];

[self.windowOut addSubview:imageView];

仅当 windowOut 恰好位于 (0/0) 时才有效。 .frame 在其父 View 的坐标系中给出框架。如果 windowOut 位于,假设 (20/20) 在其父 View (self.view?) 中,那么 imageView 将位于 (40,40)

使用 bounds 代替。这是相同的,但在它自己的坐标系内。

UIImageView* imageView = [[UIImageView alloc] initWithFrame:self.windowOut.bounds];
[self.windowOut addSubview:imageView];

关于ios - 中心和纵横比适合图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23066092/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) Powered by Discuz! X3.4