Posts by Amadeu Cavalcante Filho • 101 points
2 posts
-
0
votes3
answers202
viewsA: Change entire application font without changing the size (Swift)
I believe the best solution for you is to have a Singleton with your fonts and whenever you initialize a label, you ask for this Singleton which font you should use. Or, you can use swizzling to…
-
0
votes2
answers128
viewsA: While an existing Transition or Presentation is occurring; the navigation stack will not be updated
I believe the problem is that you are displaying an Alert when you have the pushSegue. So you can’t make the transition, because there’s an alert on the screen as you try to make the second…