Posts by Renato Mendes • 1 point
1 post
-
0
votes3
answers202
viewsA: Change entire application font without changing the size (Swift)
See if this works for you extension UILabel { var defaultFont: UIFont { get { return self.font } set { guard let font = self.font else { return } self.font = UIFont(name: self.defaultFont.fontName,…