uikit – iOS 7:什么是UIBarButtonItem的默认字体?

前端之家收集整理的这篇文章主要介绍了uikit – iOS 7:什么是UIBarButtonItem的默认字体?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
具有UIBarButtonItemStyleDone样式的UIBarButtonItem的标题的默认字体是什么?

以下只返回nil:

[doneBarButtonItem titleTextAttributesForState:UIControlStateNormal]

解决方法

[UIFont boldSystemFontOfSize:17]

注意:我通过这样做证实了这一点:

UIFont *font = [UIFont boldSystemFontOfSize:17];
[doneBarButtonItem setTitleTextAttributes:@{NSFontAttributeName: font}
                                 forState:UIControlStateNormal];

然后,我拍摄了前&之后进行比较.他们是一样的

原文链接:https://www.f2er.com/iOS/329641.html

猜你在找的iOS相关文章