我使用自定义字体作为标签和字符串,我从unicode字符获取。 并且字体没有变化。 这是我的代码的片段:
NSString* str = @"\u05D0\u05D1\u05D2";
[mMatchingLabel setText:str];
mMatchingLabel.font = [UIFont fontWithName:@"David New Hebrew" size:26];
但是当我写作例如:
NSString* str = @"label"; [mMatchingLabel setText:str];
mMatchingLabel.font = [UIFont fontWithName:@"David New Hebrew" size:26];
字体效果很明显。
有人可以解释这里的错误吗?