FontAwesome を iOS アプリで起動して実行しようとしていますが、少し支援が必要です。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を参照)。
どんな助けでも大歓迎です。