This may be useful for people looking for this answer:
To switch from one font to another, do the following:
UIView.transition(with: label, duration: 0.25, options: .transitionCrossDissolve, animations: { self.label.font = UIFont.systemFont(ofSize: 15) }) { isFinished in }
when there is text, go to:
UIView.transition(with: label, duration: 0.25, options: .transitionCrossDissolve, animations: { self.label.font = UIFont.boldSystemFont(ofSize: 15) }) { isFinished in }
(Gif shows a different font)

SirRupertIII
source share