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

[翻译] BezierString

时间:2015-09-08 21:39:59      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

BezierString

技术分享

https://github.com/lvnyk/BezierString

Rendering NSAttributedStrings along arbitrary continuous UIBezierPaths

将富文本沿着贝塞尔曲线绘制.

 

Example

技术分享

 

1. Create a bezier path and an attributed string 创建出贝塞尔曲线以及富文本

let bezierPath = UIBezierPath()
bezierPath.moveToPoint(CGPointMake(50, 50+150))
bezierPath.addCurveToPoint(CGPointMake(50+200, 50), controlPoint1: CGPointMake(50+10, 50+75), controlPoint2: CGPointMake(50+100, 50))
bezierPath.addCurveToPoint(CGPointMake(50+400, 50+150), controlPoint1: CGPointMake(50+300, 50), controlPoint2: CGPointMake(50+400-10, 50+75))

let attributedString = NSAttributedString(string: "Where did you come from, where did you go?", attributes: [
    kCTFontAttributeName: CTFontCreateWithName("HelveticaNeue-UltraLight", 26, nil),
    kCTForegroundColorAttributeName: UIColor.redColor().CGColor
    ])

2. Use the BezierString class 使用BezierString类

let bezierString = BezierString(bezierPath: bezierPath)

// generate an image
let img:UIImage! = bezierString.imageWithAttributedString(attributedString) 

// or render onto a preexisting context
bezierString.drawAttributedString(attributedString, toContext: UIGraphicsGetCurrentContext())

UIBezierLabel

Alternatively, in place of UILabel, use a UIBezierLabel instance, assign a bezierString orbezierPath and use as a normal UILabel

需要注意的是,替换当前UILabel非常简单.使用UIBezierLabel的实体对象,然后给bezierPath赋值,其余地方使用起来跟正常UILabel一样.

// create a label, either in code or Interface Builder
let label = UIBezierLabel(frame: CGRectZero)

// set the properties
label.bezierPath = bezierPath
label.textAlignment = .Center
label.text = "Where did you come from, where did you go?"
label.sizeToFit()

 

[翻译] BezierString

标签:

原文地址:http://www.cnblogs.com/YouXianMing/p/4792816.html

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