我正在尝试在 iOS 应用程序上启动并运行 FontAwesome,并且可以使用一些帮助。我有以下适用于 iOS 的代码:
UIBarButtonItem * viewDeckButton = [[UIBarButtonItem alloc]
initWithTitle:@"\uf0c9"
style:UIBarButtonItemStyleBordered
target:self.viewDeckController
action:@selector(toggleLeftView)];
NSDictionary * customTextAttrs = [NSDictionary dictionaryWithObjectsAndKeys:
[UIFont fontWithName:@"FontAwesome" size:14.0],
UITextAttributeFont,
nil];
[viewDeckButton setTitleTextAttributes:customTextAttrs forState:UIControlStateNormal];
@"\uf0c9"
对应css类,icon-reorder。该字体似乎已安装在我的系统上(请参阅http://cl.ly/image/2F1x1z2H0i2N)。我得到了标准的框字符,好像没有加载字体(参见http://madmonkdev.com/badchar.png)。
任何帮助,将不胜感激。