5
是否有可能有一個自定義UIButton的圖像只覆蓋了一半? 我想這將是這樣的:自定義UIButton圖像iOS
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圖像,並在底部半透明。
我知道如何創建一個自定義按鈕和一切。我只是在討論控制背景圖像拉伸的屬性。
謝謝!
圖像的尺寸和按鈕的矩形是否相等/比例? – CodaFi 2012-07-08 06:39:27
更新澄清。謝謝 – bkbeachlabs 2012-07-08 06:41:00