码迷,mamicode.com
首页 > 移动开发 > 详细

< IOS开发 >使用CGContextRef绘制文字时的设置

时间:2015-07-01 22:03:56      阅读:923      评论:0      收藏:0      [点我收藏+]

标签:

        NSString *str = @"hello";
        //字体
        UIFont *font = [UIFont systemFontOfSize:16.0];
        //文本风格,设置居中
        NSMutableParagraphStyle *paragraphStyle = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
        [paragraphStyle setAlignment:NSTextAlignmentCenter];
        //文本位置
        CGRect iRect = CGRectMake(0, 0, 100, 20);
        //打印文本
        [str drawInRect:iRect withAttributes:@{NSFontAttributeName:font,NSParagraphStyleAttributeName:paragraphStyle}];

注意drawInRect:withAttributes函数在IOS7之后才能使用

< IOS开发 >使用CGContextRef绘制文字时的设置

标签:

原文地址:http://www.cnblogs.com/aY-Wonder/p/4614474.html

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