プログラムでボタンを作成します..........
button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self action:@selector(aMethod:)
forControlEvents:UIControlEventTouchDown];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[view addSubview:button];
タイトルの色を変更するにはどうすればよいですか?
これを行うには、-[UIButton setTitleColor:forState:]
を使用できます。
例:
Objective-C
[buttonName setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
スイフト2
buttonName.setTitleColor(UIColor.blackColor(), forState: .Normal)
Swift 3
buttonName.setTitleColor(UIColor.white, for: .normal)
richardchildan に感謝
UIButton
を作成すると、ViewController
が追加されます。次のインスタンスメソッドは、UIFont
のtintColor
、TextColor
、およびUIButton
を変更します。
Objective-C
buttonName.titleLabel.font = [UIFont fontWithName:@"LuzSans-Book" size:15];
buttonName.tintColor = [UIColor purpleColor];
[buttonName setTitleColor:[UIColor purpleColor] forState:UIControlStateNormal];
スイフト
buttonName.titleLabel.font = UIFont(name: "LuzSans-Book", size: 15)
buttonName.tintColor = UIColor.purpleColor()
buttonName.setTitleColor(UIColor.purpleColor(), forState: .Normal)
Swift
buttonName.titleLabel?.font = UIFont(name: "LuzSans-Book", size: 15)
buttonName.tintColor = UIColor.purple
buttonName.setTitleColor(UIColor.purple, for: .normal)
ソリューション in Swift:
button.setTitleColor(UIColor.red, for: .normal)
これにより、ボタンのタイトルの色が設定されます。
Swift 5では、UIButton
に setTitleColor(_:for:)
メソッドがあります。 setTitleColor(_:for:)
には次の宣言があります。
指定した状態に使用するタイトルの色を設定します。
func setTitleColor(_ color: UIColor?, for state: UIControlState)
次のPlaygroundサンプルコードは、UIbutton
でUIViewController
を作成し、setTitleColor(_:for:)
を使用してタイトルの色を変更する方法を示しています。
import UIKit
import PlaygroundSupport
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = UIColor.white
// Create button
let button = UIButton(type: UIButton.ButtonType.system)
// Set button's attributes
button.setTitle("Print 0", for: UIControl.State.normal)
button.setTitleColor(UIColor.orange, for: UIControl.State.normal)
// Set button's frame
button.frame.Origin = CGPoint(x: 100, y: 100)
button.sizeToFit()
// Add action to button
button.addTarget(self, action: #selector(printZero(_:)), for: UIControl.Event.touchUpInside)
// Add button to subView
view.addSubview(button)
}
@objc func printZero(_ sender: UIButton) {
print("0")
}
}
let controller = ViewController()
PlaygroundPage.current.liveView = controller
Swiftを使用している場合、これは同じことを行います。
buttonName.setTitleColor(UIColor.blackColor(), forState: .Normal)
お役に立てば幸いです!