CFGradientLabel.h 507 B

123456789101112131415161718192021222324252627
  1. //
  2. // TestLabel.h
  3. // 38-文字渐变色-C
  4. //
  5. // Created by 于 传峰 on 15/7/27.
  6. // Copyright (c) 2015年 于 传峰. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CFGradientLabel : UILabel
  10. @property(nonatomic, strong) NSArray* colors;
  11. /** 描多粗的边*/
  12. @property (nonatomic, assign) NSInteger outLineWidth;
  13. /** 外轮颜色*/
  14. @property (nonatomic, strong) UIColor *outLinetextColor;
  15. /** 里面字体默认颜色*/
  16. @property (nonatomic, strong) UIColor *labelTextColor;
  17. @end