-
Notifications
You must be signed in to change notification settings - Fork 3
iOS Fonts
Kevin Leong edited this page Oct 10, 2016
·
1 revision
@IBOutlet weak var titleLabel: UILabel!
override func awakeFromNib() {
titleLabel.font = UIFont.boldSystemFontOfSize(titleLabel.font.pointSize)
}
The above code block sets the titleLabel
to use the bold system font and respects the point size set by Interface Builder.