How to detect Dynamic Font size changes from iOS Settings?
Inside settings->general->text size, after changing the text size, I'd have to exit my own app to have the sizes applied to [UIFont preferredFontForTextStyle:..] Is there a delegate or notification to notify my app to re-apply the new sizes? Update: I tried the following but interestingly, the font size will apply after I BG and launch the app TWICE. - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(fromBg:) name:UIApplicationDidBecomeActiveNotification