獲得標題標籤
底層標題標籤(如果存在)可以使用
迅速
var label: UILabel? = button.titleLabel
目標 C.
UILabel *label = button.titleLabel;
例如,這可用於設定標題標籤的字型
迅速
button.titleLabel?.font = UIFont.boldSystemFontOfSize(12)
目標 C.
button.titleLabel.font = [UIFont boldSystemFontOfSize:12];