iOS 文字可根据进度改变颜色的进度条

日常记录工程中遇到的问题~~
先上效果图:


进度条效果图

简单解释:
一个进度条view,要求进度条上的文字需要适应进度条的背景颜色和进度的颜色,over。

思路:

  • 自定义一个ProgressView
  • 一个用于显示进度的view(imageView也可以)
  • 一个适应背景色的label1
  • 一个适应进度色的label2

添加顺序为:
ProgressView - label1 - view - label2
注意,label2要添加在view上,此时label2就可以根据view的进度显示一部分,然后label1显示的是view没有覆盖到的一部分,label1+label2就可以完整的显示全部要显示的内容了。

注意:
此方法算是一个取巧的方法,另外还有一种通过重新绘制label的方法也可以尝试。此篇只写了第一种方法,第二种方法有同学做过的欢迎来交流~~

简单粗暴的上代码:

因为是工程中用到的,工程中的显示进度view是一个渐变的图片,而且已经封装了下,需要的同学可以直接拿来用。

//.h文件

@interface ProgressWithColorTextProgressView : UIView
//进度显示的图片
@property (nonatomic, strong) UIImage *progressImage; 
//进度多少
@property (nonatomic, assign) CGFloat progressNum; 
//显示的文字
@property (nonatomic, copy) NSString *numLabelString;
 // 文字包含两个颜色,左边textColor1,右边textColor2
@property (nonatomic, strong) UIColor *textColor1;
@property (nonatomic, strong) UIColor *textColor2;
@end
//.m文件

@interface ProgressWithColorTextProgressView()

@property (nonatomic, strong) UIImageView *progressView;
@property (nonatomic, strong) UILabel *numLabel1;
@property (nonatomic, strong) UILabel *numLabel2;

@end

@implementation ProgressWithColorTextProgressView

-(instancetype)initWithFrame:(CGRect)frame{
    if (self = [super initWithFrame:frame]) {
        [self addUI];
    }
    return self;
}

-(void)addUI{
    /*
    自下到上的排列顺序为:
    self - numLabel1 - progressView - numLabel2
    */
    
    self.backgroundColor = [UIColor blackColor];
    
    _numLabel1 = [UILabel new];
    _numLabel1.textColor = [UIColor yellowColor];
    _numLabel1.font = UIFontMake(15);
    [self addSubview:_numLabel1];
    
    _progressView = [UIImageView new];
    _progressView.backgroundColor = [UIColor yellowColor];
    [self addSubview:_progressView];
    
    _numLabel2 = [UILabel new];
    _numLabel2.textColor = [UIColor blackColor];
    _numLabel2.font = UIFontMake(15);
    [_progressView addSubview:_numLabel2];
    
    self.layer.masksToBounds = YES; //超过父视图的不显示
    _progressView.clipsToBounds = YES;
    _numLabel2.layer.masksToBounds = YES;
    
}

-(void)setFrame:(CGRect)frame{
    [super setFrame:frame];

    self.layer.cornerRadius = frame.size.height/2.0;

    _progressView.layer.cornerRadius = frame.size.height/2.0;
    _numLabel1.frame = CGRectMake(self.frame.size.height/2.0, 0, self.frame.size.width-self.frame.size.height, self.frame.size.height);
    _progressView.frame = CGRectMake(0, 0, self.frame.size.width *_progressNum, self.frame.size.height);
    _numLabel2.frame = CGRectMake(self.frame.size.height/2.0, 0, self.frame.size.width-self.frame.size.height, self.frame.size.height);
    
}

-(void)setProgressImage:(UIImage *)progressImage{
    _progressImage = progressImage;
    _progressView.image = progressImage;
}
-(void)setProgressNum:(CGFloat)progressNum{
    _progressNum = progressNum;
    _progressView.frame = CGRectMake(0, 0, self.frame.size.width *_progressNum, self.frame.size.height);
}
-(void)setNumLabelString:(NSString *)numLabelString{
    _numLabelString = numLabelString;
    _numLabel1.text = _numLabelString;
    _numLabel2.text = _numLabelString;
}
-(void)setTextColor1:(UIColor *)textColor1{
    _textColor1 = textColor1;
    _numLabel1.textColor = _textColor1;
}
-(void)setTextColor2:(UIColor *)textColor2{
    _textColor2 = textColor2;
    _numLabel2.textColor = _textColor2;
}

@end

使用:

progressView1.backgroundColor、progressView1.progressImage、progressView1.textColor1、progressView1.textColor2 可以根据需要自己修改。

//使用

    ProgressWithColorTextProgressView *progressView1 = [[ProgressWithColorTextProgressView alloc] init];
    progressView1.frame = CGRectMake(20, 150, 320, 25);
    progressView1.textColor1 = [UIColor yellowColor];
    progressView1.textColor2 = [UIColor blackColor];
    progressView1.numLabelString = @"我是一个文字可根据进度改变颜色的进度条";
    progressView1.progressNum = 0/100.0;
    [self.view addSubview:progressView1];
    
    ProgressWithColorTextProgressView *progressView2 = [[ProgressWithColorTextProgressView alloc] init];
    progressView2.frame = CGRectMake(20, 225, 320, 25);
    progressView2.textColor1 = [UIColor yellowColor];
    progressView2.textColor2 = [UIColor blackColor];
    progressView2.numLabelString = @"我是一个文字可根据进度改变颜色的进度条";
    progressView2.progressNum = 50/100.0;
    [self.view addSubview:progressView2];
    
    ProgressWithColorTextProgressView *progressView3 = [[ProgressWithColorTextProgressView alloc] init];
    progressView3.frame = CGRectMake(20, 300, 320, 25);
    progressView3.textColor1 = [UIColor yellowColor];
    progressView3.textColor2 = [UIColor blackColor];
    progressView3.numLabelString = @"我是一个文字可根据进度改变颜色的进度条";
    progressView3.progressNum = 100/100.0;
    [self.view addSubview:progressView3];

好了,这样出来的效果就是文章开头的图片效果了。
具体的图层排列给大家看下debug模式下的内容:


1

2

大家根据图层排列可以很直接的看到。

重要点

重要的地方只有一点,最上层的label2要贴在显示进度的view上,而且要加上这句label2.layer.masksToBounds = YES; 让其超过父视图的部分不显示。

添加

clipsToBounds:是类View的属性,如果设置为yes,则不显示超出父View的部分
masksToBounds:是类CALayer的属性,如果设置为yes,则不显示超出父View layer的部分

他们是不同的名字,因为UIView和CALayer是不同的,有不同的术语与他们有联系的,但它们在功能上是等价的。如果你拆开clipsToBounds你会看到它只是调用masksToBounds

结束

OK完成了,有什么不对的、更好的地方欢迎交流指正,谢谢(*^▽^*)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 194,088评论 5 459
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 81,715评论 2 371
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 141,361评论 0 319
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,099评论 1 263
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 60,987评论 4 355
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,063评论 1 272
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,486评论 3 381
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,175评论 0 253
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,440评论 1 290
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,518评论 2 309
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,305评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,190评论 3 312
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,550评论 3 298
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 28,880评论 0 17
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,152评论 1 250
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,451评论 2 341
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,637评论 2 335