我遇到了一个问题,我允许用户在我的项目中为标签选择字体,但是当用户设置该标签的大小(使用不同的按钮)时,标签会重置为默认字体。我希望能够保留用户已应用的字体,同时仍允许用户更改字体大小。感谢任何帮助,谢谢!
这是我的代码..
-(IBAction)setFont{
[userText setFont:[UIFont fontWithName:@"Arial-BoldMT" size:50.0]];
//I had to add a size when setting the font or else I got an error
}
-(IBAction)setFontSize{
[userText setFont:[UIFont systemFontOfSize:24]];
}
答案 0 :(得分:27)
只需在标签的当前字体上使用fontWithSize:
方法:
- (IBAction)setFontSize {
// Keep the same font but change its size to 24 points.
UIFont *font = userText.font;
userText.font = [font fontWithSize:24];
}
答案 1 :(得分:0)
函数[UIFont systemFontOfSize:]
将始终返回默认系统字体。您可以使用在setFont中调用的相同函数[UIFont fontWithName:size:]
。