美文网首页iOS Developer
iOS-系统字体变化

iOS-系统字体变化

作者: linbj | 来源:发表于2017-05-03 16:04 被阅读284次
IMG_0494.PNG

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

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

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

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

相关文章

网友评论

    本文标题:iOS-系统字体变化

    本文链接:https://www.haomeiwen.com/subject/zazktxtx.html