系统的一些监听

 

 

UIContentSizeCategoryDidChangeNotification 字体大小

注册监听系统字体设置变化的通知
  [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(sysFontSizeIsChange:)
                                                 name:UIContentSizeCategoryDidChangeNotification
                                               object:nil];

- (void)sysFontSizeIsChange:(NSNotification *)noti{
//在这里就可以监听到系统设置中的字体变化了

}

 

 
posted @ 2022-07-22 10:41  LiuZX_贤  阅读(32)  评论(0编辑  收藏  举报