add the following code to your viewDidLoad to get notified when the font size is changed with the settings available.
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(preferredContentSizeChanged:)
name:UIContentSizeCategoryDidChangeNotification
object:nil];
Then add the following method:
- (void)preferredContentSizeChanged:(NSNotification *)notification {
self.textView.font = [UIFont preferredFontForTextStyle:UIFontTextStyleBody];
}
.
. , , , , . , ; . , preferredFontForTextStyle: .
EDIT:
: fooobar.com/questions/69279/...
[UIApplication sharedApplication].preferredContentSizeCategory;