很多app沒有考慮到當(dāng)用戶修改了系統(tǒng)字體之后app內(nèi)字體需要適當(dāng)變化的情況高诺。
當(dāng)系統(tǒng)字體變化的時候如何改變app的字體大小?
監(jiān)聽系統(tǒng)字體大小變化
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(preferredContentSizeChanged:)
name:UIContentSizeCategoryDidChangeNotification
object:nil];
- (void)preferredContentSizeChanged:(NSNotification *)notification{
//do something
}