有这么一个需求,需要在UILabel Text上点击之后添加划线效果,就是类似todo done那种。
我知道简单的划线就是起点加重点坐标,连接成为一条线,但是如何用代码控制看到由点到线的效果呢?
CGContextSetLineWidth(context, 1);CGContextMoveToPoint(context, x, y);CGContextAddLineToPoint(context, x, y);CGContextStrokePath(context);
谢谢!
莫回无
相关分类