半分だけをカバーする画像を持つカスタム 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?? */
.
.
.
上半分に 50x50px の画像しかない 50x100px のボタンが必要で、下半分は透明にします。
カスタムボタンとすべてを作成する方法を知っています。backgroundImage のストレッチを制御するプロパティが何であるかを知りたいだけです。
ありがとう!