有时候我们会有这种需求:就是当我们在app中检测到系统设置中字体变化的时候,我们也需要在app中适配字体大小,那么如何监测呢?
注册监听系统字体设置变化的通知
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(sysFontSizeIsChange:)
name:UIContentSizeCategoryDidChangeNotification
object:nil];
- (void)sysFontSizeIsChange:(NSNotification *)noti{
//在这里就可以监听到系统设置中的字体变化了
}
网友评论