gpt4 book ai didi

ios - 拉伸(stretch) UIButton 的背景图像

转载 作者:IT王子 更新时间:2023-10-29 07:44:51 26 4
gpt4 key购买 nike

我得到的纹理比我的 UIButton 短很多。

我得到了这个纹理:

enter image description here

我应该创建这个按钮:

enter image description here

我应该如何拉伸(stretch)(而不是平铺)这个纹理?横向拉伸(stretch)

感谢

最佳答案

根据您提供的示例图像,我很确定您正在寻找 UIImageresizableImageWithCapInsets:

UIImage *originalImage = [UIImage imageNamed:@"myImage.png"];
UIEdgeInsets insets = UIEdgeInsetsMake(top, left, bottom, right);
UIImage *stretchableImage = [originalImage resizableImageWithCapInsets:insets];
[myButton setBackgroundImage:stretchableImage forState:UIControlStateNormal];
// the image will be stretched to fill the button, if you resize it.

UIEdgeInsets 结构中的值决定了您不想拉伸(stretch)的边距。您的左值和右值可能有这么宽:

enter image description here

顶部和底部的值可以是 0(如果您不想垂直调整按钮的大小),或者可能是总高度的一半。

关于ios - 拉伸(stretch) UIButton 的背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12623961/

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