是否可以创建具有可调整大小图像的正确对齐的 UIImageView?
我尝试了所有的东西(例如两个图像的力量等)并且无法使其工作。
UIImageView的坐标为:
po _Background
(UIImageView *) $1 = 0x14c42bd0
<UIImageView: 0x14c42bd0;
frame = (16 38; 992 672);
opaque = NO;
autoresize = LM+RM+TM+BM;
userInteractionEnabled = NO;
layer = <CALayer: 0x14c42ba0>> - (null)
UIImage本身是96x96(视网膜,即png是192x192,比例为2)。可调整大小的UIImage使用:
创建UIEdgeInsets edgeInsets = UIEdgeInsetsMake(32, 32, 32, 32);
UIImage* resizableImage = [originalImage resizableImageWithCapInsets:edgeInsets];
[_Background setImage:resizableImage];
在模拟器中打开“颜色未对齐的图像”时,UIImageView _Background会以黄色突出显示。在调试器中删除其UIImage:
[_Background setImage:nil];
删除黄色突出显示,即没有图像 - &gt;没有错位。
任何人都知道发生了什么以及如何确保它对齐?
感谢。
答案 0 :(得分:5)
根据这个答案:What does yellow tinting represent when using "color misaligned images" on iPhone/iOS,黄色突出显示图像拉伸。由于这是您要求的可调整大小的图像,因此情况总是如此。