iOS-系统字体变化

iOS-系统字体变化_第1张图片
IMG_0494.PNG

很多app没有考虑到当用户修改了系统字体之后app内字体需要适当变化的情况。

当系统字体变化的时候如何改变app的字体大小?

监听系统字体大小变化
  [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(preferredContentSizeChanged:)
                                                 name:UIContentSizeCategoryDidChangeNotification
                                               object:nil];

- (void)preferredContentSizeChanged:(NSNotification *)notification{
    //do something
}

你可能感兴趣的:(iOS-系统字体变化)