- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/changelee82/CLHaloLabel
- 软件文档: https://github.com/changelee82/CLHaloLabel
软件介绍
CLHaloLabel 是拥有光晕扫过效果的 Label。
使用方法:
#import "CLHaloLabel.h" self.haloLabel.haloDuration = 5; self.haloLabel.haloWidth = 0.8; CLHaloLabel *lable = [[CLHaloLabel alloc] initWithFrame:CGRectMake(20, 200, 100, 30)]; lable.text = @"从代码创建"; lable.textColor = [UIColor greenColor]; lable.haloColor = [UIColor redColor]; [self.view addSubview:lable];
