2012-05-24 106 views
4

我的iPhone應用程序中有3個.ttf文件。他們表示這些3種字體:不能在iPhone應用程序中使用自定義字體

  • 譚圓角書
  • 譚圓角中
  • 譚圓角大膽

我把所有的人都在我的.plist,但只有2顯示了,當我做到這一點:

NSLog(@"%@",[UIFont fontNamesForFamilyName:@"Gotham Rounded"]); 

這是記錄的內容:

"GothamRoundedMedium-Regular", 
"GothamRoundedBook-Regular" 

這是怎麼回事錯在這裏?下面的屏幕截圖。

enter image description here

enter image description here

回答

1

它可能是由於你沒有包含在你的目標gothamroundedbold.ttf在圖像的原因。 選擇幫助導航器 檢查丟失的字體文件的成員資格。在我的情況下,它會被檢查,並在你的情況下,它應該被取消選中。
enter image description here `

相關問題