Xcode Loading custom fonts

躍然發表於2014-12-02


1、進入網站http://www.dafont.com,選取需要的字型

2、下載字型,解壓檔案,找到ttf格式檔案,這個是我們要匯入至工程的。如thirteen_pixel_font.ttf 。

3、匯入檔案至工程中 點選最後

4、選取工程targets,進入info,找到Custom iOS Target Properties. 點選列表最後一行入口Bundle versions string, short ,點選按鈕+,新增新內容。如下圖所示:



5、在iOS 遊戲開發中,即可引用上面新增字型。如:

    SKLabelNode *myLabel = [SKLabelNode labelNodeWithFontNamed:@"Thirteen Pixel Fonts"]; 


學自:iOS Games by Tutorials  p145  Loading custom fonts

相關文章