美文网首页
IOS中文设置斜体

IOS中文设置斜体

作者: 赖床综合症 | 来源:发表于2016-07-28 10:24 被阅读1737次

    在ios中英文字体可以设置斜体,但是对中文字符无效,所以要对中文设置斜体得另外做处理。

    //设置中文倾斜

    CGAffineTransform matrix =CGAffineTransformMake(1, 0, tanf(5 * (CGFloat)M_PI / 180), 1, 0, 0);//设置反射。倾斜角度。

    UIFontDescriptor *desc = [ UIFontDescriptor fontDescriptorWithName :[UIFont systemFontOfSize:14].fontName matrix :matrix];//取得系统字符并设置反射。

    label.font = [ UIFont fontWithDescriptor :desc size :14];

    相关文章

      网友评论

          本文标题:IOS中文设置斜体

          本文链接:https://www.haomeiwen.com/subject/hylajttx.html