iOS 设置标题颜色

示例

//Swift

button.setTitleColor(color, forControlState: controlState)

//Objective-C

[button setTitleColor:(nullable UIColor *) forState:(UIControlState)];

标题颜色设置为蓝色

//Swift

button.setTitleColor(.blue, for: .normal)

//Objective-C

[button setTitleColor:[UIColor blueColor] forState:UIControlStateNormal]

           

以上是 iOS 设置标题颜色 的全部内容, 来源链接: utcz.com/z/356602.html

回到顶部