Draw Line
UIColor.brownColor().set()
let context = UIGraphicsGetCurrentContext()
CGContextSetLineWidth(context, 5)
CGContextMoveToPoint(context, 50, 10)
CGContextAddLineToPoint(context, 100, 123)
CGContextStrokePath(context)
UIColor.brownColor().set()
let context = UIGraphicsGetCurrentContext()
CGContextSetLineWidth(context, 5)
CGContextMoveToPoint(context, 50, 10)
CGContextAddLineToPoint(context, 100, 123)
CGContextStrokePath(context)