web-dev-qa-db-ja.com

ボタンの背景色を設定する方法-Xcode

XcodeでUIButtonの背景色を設定するにはどうすればよいですか?

レイアウトプロパティにBackgroundとImageプロパティが表示されますが、この2つでは何も設定できません。 (色ではなく両方の画像のみを設定できます)

24
GMX

Attribute Inspectorを少しスクロールするだけで、Backgroundviewを設定できるbackgroundColorセクションでUIButtonプロパティを見つけることができます。

enter image description here

ボタンのbackgroundColorをプログラムで設定する場合。

目的C:

 self.yourButton.backgroundColor = [UIColor redColor];

Swift 3およびSwift 4

 self.yourButton.backgroundColor = UIColor.red

Swift 2.3以下

 self.yourButton.backgroundColor = UIColor.redColor()
46
Nirav D

Objective-Cを使用している場合、これはボタンの背景色を設定するためのコードです。

YourButtonObject.backgroundColor = [UIColor yellowColor];

enter image description here

また、ストーリーボードからUIButtonの背景色の設定を次のように指示できます。

enter image description here

7
Nitin Gohel

Swift 2.3

    btn.backgroundColor = UIColor(red: 17.0/255.0, green: 119.0/255.0, blue: 151.0/255.0, alpha: 1.0)
    btn.backgroundColor = UIColor.redColor()

ストーリーボードで enter image description here

6
RajeshKumar R