ios – 如何在swift 3中设置按钮标签?

前端之家收集整理的这篇文章主要介绍了ios – 如何在swift 3中设置按钮标签?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > UIControlState.Normal is Unavailable3个
@IBOutlet weak var catParentIdButton: UIButton!

我有这个代码,现在我想以编程方式编写按钮标签.
在swift 3.0中编写按钮标签的语法是什么?

解决方法

方法签名在Swift 3.0中更改
func setTitle(_ title: String?,for state: UIControlState) // Use this method to set the title for the button

例:

btn.setTitle(title: "Title",for: .normal)

注意btn控件的默认状态更改为.Normal到.normal.

// prevIoUs 
public static var Normal: UIControlState { get }

// Swift 3.0
static var normal: UIControlState { get }
原文链接:https://www.f2er.com/iOS/330773.html

猜你在找的iOS相关文章