22 lines
414 B
Objective-C
22 lines
414 B
Objective-C
//
|
|
// SHineLabel.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/4.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface SHineLabel : UILabel
|
|
//外光
|
|
@property(nonatomic,retain) UIColor *outLineColor;
|
|
//里光
|
|
@property(nonatomic,retain) UIColor *oinsideColor;
|
|
//光晕
|
|
@property(nonatomic,retain) UIColor *blurColor;
|
|
@property(nonatomic) CGFloat fontsize;
|
|
|
|
|
|
@end
|