A-A+

iOS UILabel显示带颜色边的文字

博客主机

原文:https://blog.csdn.net/dolacmeng/article/details/81204469

需求如图,UILabel要实现带红色边的文字显示。

1、新建UILabel的子类JXBorderLabel

2、重写drawRect:方法

#import "JXBorderLabel.h"

@implementation JXBorderLabel

- (void)drawRect:(CGRect)rect {
    //1.获取上下文
    CGContextRef context = UIGraphicsGetCurrentContext();

    //2.给上下文线段设置线宽,画出文本
    CGContextSetLineWidth(context, 5);
    CGContextSetLineJoin(context, kCGLineJoinRound);
    CGContextSetTextDrawingMode(context, kCGTextStroke);
    self.textColor = UIColor.redColor;
    

[super drawRect:rect]

; //3.绘制原本的文字 CGContextSetTextDrawingMode(context, kCGTextFill); [UIColor.whiteColor setFill]; self.textColor = UIColor.whiteColor;

[super drawRect:rect]

; } @end 复制代码

3、使用 (1)xib/storyboard使用时,将UILabel设置为JXBorderLabel类。 (2)代码使用时,创建UILabel,替换为创建JXBorderLabel

标签:

给我留言

Copyright © ios教程,苹果粉丝,苹果资讯,ios入门教程,ios学习,ios程序员,ios视频教程,ios粉丝网 保留所有权利.   Theme  Ality

用户登录