我正在尝试在我的IOS应用程序中使用字体图标,我可以显示来自其他的图像
当我使用下面的代码时,图像正在显示
[Label setFont:[UIFont fontWithName:@"fontello" size:50]];
[Label setText:[NSString stringWithUTF8String:"\u2692"]];
但是当我尝试使用来自私人用户区的代码时,没有显示
[Label setFont:[UIFont fontWithName:@"fontello" size:50]];
[Label setText:[NSString stringWithUTF8String:"\uE756"]];
任何人都可以帮助我,提前致谢!