title
的UIBarButtonItem
和style
的默认字体是什么?
以下只是返回UIBarButtonItemStyleDone
:nil
最佳答案
[UIFont boldSystemFontOfSize:17]
注意:我通过执行以下操作确认了这一点:
UIFont *font = [UIFont boldSystemFontOfSize:17];
[doneBarButtonItem setTitleTextAttributes:@{NSFontAttributeName: font}
forState:UIControlStateNormal];
然后,我拍摄了前后的屏幕截图并进行了比较。他们是相同的。
关于uikit - iOS 7:UIBarButtonItem的默认字体是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18946317/