私はアプリを作成することを凝視しましたが、アプリのすべてのボタンが同じように見えるようにしたいと思います。1つのボタンのコードを記述し、他のボタンを同じように見せたいです。これが私のボタンコードです:
UIImage *butimage = [UIImage imageNamed:@"button1.png"];
UIImage *butimage3 = [UIImage imageNamed:@"button1press.png"];
UIImage *butpress = [butimage3 stretchableImageWithLeftCapWidth:15 topCapHeight:0];
UIImage *butimage2 = [butimage stretchableImageWithLeftCapWidth:15 topCapHeight:0];
[button1 setBackgroundImage:butimage2 forState:UIControlStateNormal];
[button1 setBackgroundImage:butpress forState:UIControlStateHighlighted];
[button1 setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
[button1 setTitleColor:[UIColor redColor] forState:UIControlStateHighlighted];
どうすればいいですか?ありがとう