本文介绍了setFont已弃用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我收到警告说setFont已被弃用?
I get a warning saying that setFont is deprecated?
[button setFont:[UIFont boldSystemFontOfSize:13]];
任何建议如何取走请...
Any suggestions how to take it away pls..
推荐答案
由于UIButton从iPhone OS 3.0开始公开其titleLabel,您必须直接设置字体:
As UIButton exposes its titleLabel starting from iPhone OS 3.0 you must set font to it directly:
[button.titleLabel setFont:[UIFont boldSystemFontOfSize:13]];
这篇关于setFont已弃用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!