本文主要是介绍[IOS 开发] UILabel文字描边,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
可以达到文字描一圈黑边的效果
继承UILabel以后重载drawTextInRect
- (void)drawTextInRect:(CGRect)rect {CGSize shadowOffset = self.shadowOffset;UIColor *textColor = self.textColor;CGContextRef c = UIGraphicsGetCurrentContext();CGContextSetLineWidth(c, 1);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;}
这篇关于[IOS 开发] UILabel文字描边的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!