uilabel文字特效制作

来源:互联网 发布:js中string转date 编辑:程序博客网 时间:2024/05/21 19:48
刚刚Q群里面有位美女发了她的UILabel的文字特效的效果,很受赞~我在这里就借花献佛了,哈……(借美女的成功记录在我的博客里)
 
先看看特效先吧,


 
这种特效其实也挺简单的,就是啊
uilabel中重写
- (void)drawTextInRect:(CGRect)rect//方法{//在这个里面写CGSize shadowOffset = self.shadowOffset;         UIColor *textColor = self.textColor;                  CGContextRef c = UIGraphicsGetCurrentContext();         CGContextSetLineWidth(c, 2);         CGContextSetLineJoin(c, kCGLineJoinRound);                  CGContextSetTextDrawingMode(c, kCGTextStroke);         self.textColor = [UIColor whiteColor];         [super drawTextInRect:rect];                  CGContextSetTextDrawingMode(c, kCGTextFill);         self.textColor = textColor;         self.shadowOffset = CGSizeMake(0, 0);         [super drawTextInRect:rect];                  self.shadowOffset = shadowOffset;      ......}

原创粉丝点击