UNPKG

472 Btext/x-cView Raw
1#import <Foundation/Foundation.h>
2#import <QuartzCore/QuartzCore.h>
3
4@class UIColor;
5
6@interface BVLinearGradientLayer : CALayer
7
8@property (nullable, nonatomic, copy) NSArray<UIColor *> *colors;
9@property (nullable, nonatomic, copy) NSArray<NSNumber *> *locations;
10@property (nonatomic) CGPoint startPoint;
11@property (nonatomic) CGPoint endPoint;
12@property (nonatomic) BOOL useAngle;
13@property (nonatomic) CGPoint angleCenter;
14@property (nonatomic) CGFloat angle;
15
16@end
17