码迷,mamicode.com
首页 > 其他好文 > 详细

4. Quartz2D 绘制文字

时间:2015-02-17 12:49:38      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

#pragma mark 绘制文字(中文)
-(void)drawText2:(CGContextRef)context{
    NSString *string = @"博阿士大夫撒风景撒开了房间撒";
    //1.获取字体
    NSLog(@"%@",[UIFont familyNames]);
    UIFont *font = [UIFont fontWithName:@"Marker Felt" size:20];
    //如果在UILabel中,可以将numbersOfLine设置0,并且指定足够的高度即可
    
    CGRect rect = CGRectMake(290, 10, 30, 440);
    [[UIColor lightGrayColor]set];
    UIRectFrame(rect);
    
    [[UIColor redColor]set];
    
    /*
     提示:在对齐方式的枚举中
     a. NSTextAlignmentJustified两端对齐
     b. NSTextAlignmentNatural
     以上两种对其方式不能使用
     */
    [string drawInRect:rect withFont:font lineBreakMode:(NSLineBreakByCharWrapping) alignment:(NSTextAlignmentLeft) ];
    
}


#pragma mark 绘制文字(英文)
-(void)drawText:(CGContextRef)context{
    NSString *string = @"Hello worldHello worldHello worldHello worldHello worldHello worldHello worldHello worldHello worldHello worldHello worldHello worldHello worldHello worldHello worldHello worldHello worldHello world";
    //1.获取字体
    NSLog(@"%@",[UIFont familyNames]);
    UIFont *font = [UIFont fontWithName:@"Marker Felt" size:40];
    //在指定点绘制字符串
    [string drawAtPoint:CGPointMake(50, 50) withFont:font];
    //如果在UILabel中,可以将numbersOfLine设置0,并且指定足够的高度即可
    
    CGRect rect = CGRectMake(50, 50, 270, 360);
    [[UIColor lightGrayColor]set];
    UIRectFrame(rect);
    
    [[UIColor redColor]set];
    
    /*
     提示:在对齐方式的枚举中
        a. NSTextAlignmentJustified两端对齐
        b. NSTextAlignmentNatural
     以上两种对其方式不能使用
     */
    [string drawInRect:rect withFont:font lineBreakMode:(NSLineBreakByWordWrapping) alignment:(NSTextAlignmentLeft) ];
    
}

 

4. Quartz2D 绘制文字

标签:

原文地址:http://www.cnblogs.com/wlxm/p/4295126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!