我想使用 resizableImageWithCapInsets 方法调整图像大小。但它没有伸展。我也不知道 UIEdgeInsetsMake 的真正基础。谁能告诉我它是如何工作的。我正在使用这段代码:
UIImage *mars = [UIImage imageNamed:@"button.png" ];
UIImage* marsTiled = [mars resizableImageWithCapInsets:
UIEdgeInsetsMake(mars.size.height/4.0,
mars.size.width/4.0,
mars.size.height/4.0,
mars.size.width/4.0)
resizingMode: UIImageResizingModeStretch];
[containerView addSubview:marsTiled];
这里的容器视图是 uiview。
它看起来像在实施后
请帮忙。