iOS:字体

         常见的字体设置

       UIButton

<span style="font-weight: normal;">  [btn setTitle: @"search" forState: UIControlStateNormal];
  // 设置字体
  [btn setFont: [UIFont systemFontSize: 14.0]]; //不可用
  btn.titleLabel.font = [UIFont systemFontOfSize: 14.0]; // 正确方法
  // 颜色
- (void)setTitleColor:(UIColor *)color forState:(UIControlState)state
- (void)setTitleShadowColor:(UIColor *)color forState:(UIControlState)state</span>

       UILabel

<span style="font-weight: normal;">  //设置属性
@property(nonatomic,retain) UIFont             *font;           
@property(nonatomic,retain) UIColor            *textColor;      
@property(nonatomic,retain) UIColor            *shadowColor;    </span>

      同一文字不同颜色字体

   self.title = @"For iOS 6 & later";
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String"];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(0,5)];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(6,12)];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(19,6)];
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Arial-BoldItalicMT" size:30.0] range:NSMakeRange(0, 5)];
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue-Bold" size:30.0] range:NSMakeRange(6, 12)];
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Courier-BoldOblique" size:30.0] range:NSMakeRange(19, 6)];
label.attributedText = str;
      同样的button里面也有setAttributedTitle方法

      使用自定义字体

       方法1:
    添加对应的字体(.ttf或.odf)到工程的resurce,使用cocos2d中的FontLabel库,FontLabel继承于UILabel,象UILabel一样使用就好了,fontName直接使用添加的资源名字即可。
  方法2;
  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上面查看加入字体的 Family name + Font name: 要使用字体 fontWithName:用“Family name”或者“Font name”都可以。
------------------------------------
参考:
《IOS(xcode)程序中使用自定义字体的方法》http://my.oschina.net/leeming/blog/57284
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值