是否可以有一个自定义 UIButton 的图像只覆盖它的一半?我想它会是这样的:
UIButton *someButton = [UIButton buttonWithType:UIButtonTypeCustom];
[someButton setBackgroundImage:[UIImage imageNamed:@"buttonPicture"]];
/* Then there must be some property I can set that prevents the button from stretching the image?? */
.
.
.
我想要一个 50x100px 的按钮,它的上半部分只有一个 50x50px 的图像,而下半部分是透明的。
我知道如何创建自定义按钮和一切。我只是想知道控制背景图像拉伸的属性是什么。
谢谢!