3
我有煩惱TabBarItem顯示自定義字體。
我整個應用程序使用自定義字體。 但只有TabBarItem字體不顯示我的自定義字體。 它正在開發iPhone模擬器的iOS 5,5.1和6 但爲iPad模擬器,用於TabBarItem自定義字體只工作在iOS 6
我的代碼來設置TabBarItem是
[[UITabBarItem appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor lightTextColor], UITextAttributeTextColor,
[NSValue valueWithUIOffset:UIOffsetMake(0, 1)], UITextAttributeTextShadowOffset,
[UIFont fontWithName:@"CustomFont" size:16.0], UITextAttributeFont,
nil] forState:UIControlStateNormal];
有沒有不同的方式來設置iOS 5和5.1的TabBarItem自定義字體?
對不起,我沒有使用「CustomFont.ttf」。我使用字體名稱本身。奇怪的是,它適用於所有的iPhone模擬器。但對於iPad模擬器,只有iOS 6.幫助我〜謝謝:) – KingOfMyHeart