底层标题标签(如果存在)可以使用来获取
迅速
var label: UILabel? = button.titleLabel
目标C
UILabel *label = button.titleLabel;
例如,这可用于设置标题标签的字体。
button.titleLabel?.font = UIFont.boldSystemFontOfSize(12)
button.titleLabel.font = [UIFont boldSystemFontOfSize:12];