一、肯定你的項目工程的resouce下有你要用的字體文件(.ttf,.odf)。 html
二、而後在你的工程的Info.plist文件中新建一行(Add Row),添加key爲:UIAppFonts,類型爲Array或Dictionary都行;在UIAppFonts下再創建一個鍵值對,key爲:Item 0,添加Value爲XXX.ttf(你字體的名字,string型),能夠添加多個,使用的時候寫對應字體名字就行。app
三、在你的項目裏要用字體的時候 xx.font = [UIFont fontWithName:@"XXX" size:20.0],這樣就能夠了。ide
參考:http://www.soft6.com/v9/2011/jckf_0928/161184.html字體
方法1:spa
添加對應的字體(.ttf或.odf)到工程的resurce,使用cocos2d中的FontLabel庫,FontLabel繼承於UILabel,象UILabel同樣使用就行了code
fontName直接使用添加的資源名字便可orm
方法2;htm
1,添加對應的字體(.ttf或.odf)到工程的resurce,例如simkai.ttf繼承
2,在info.plist中添加一項 Fonts provided by application (item0對應的value爲simkai.ttf,添加多個字體依次添加就能夠了)資源
3,使用時 aLabel.font=[UIFont fontWithName:@"XXX" size:30]; 注意XXX不必定是simkai,這裏是KaiTi_GB2312(中文楷體),你能夠經過下面的方法遍歷全部字體
如下是代碼片斷:
NSArray *familyNames =[[NSArray alloc]initWithArray:[UIFont familyNames]];
NSArray *fontNames;
NSInteger indFamily, indFont; for(indFamily=0;indFamily<[familyNames count];++indFamily) { NSLog(@"Family name: %@", [familyNames objectAtIndex:indFamily]); fontNames =[[NSArray alloc]initWithArray:[UIFont fontNamesForFamilyName:[familyNames objectAtIndex:indFamily]]]; for(indFont=0; indFont<[fontNames count]; ++indFont) { NSLog(@" Font name: %@",[fontNames objectAtIndex:indFont]); } [fontNames release]; } [familyNames release];
在程序中先加入這段代碼,運行,查看console,以上程式會列出全部的字型,固然也包含UIAPPFonts所加的字型,但請注意,名字可能差距很大,要本身找一下
例:
msjh.ttf (Window7中的微軟正黑體) , 加入UIAPPFonts
執行以上程序會列出
Family name: Microsoft JhengHei
Font name: MicrosoftJhengHeiRegular
要使用字體fontWithName:用「Family name」或者「Font name」均可以。
而不是字體的文件名,弄錯了將沒法看到效果。
在你的項目裏要用字體的時候 xx.font = [UIFont fontWithName:@"Microsoft JhengHei" size:20.0],這樣就能夠了。
其中添加的simkai.ttf對應的字體就是KaiTi_GB2312
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 120, 50)];
label.font = [UIFont fontWithName:@"KaiTi_GB2312" size:30];
label.text = @"中文楷體";
[self.view addSubview:label];
[label release];