newsmemory-ios-sdk/Frameworks/BVLinearGradient.xcframework/ios-arm64/Headers/BVLinearGradientLayer.h

17 lines
471 B
C
Raw Normal View History

2024-05-02 15:08:24 +00:00
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
@class UIColor;
@interface BVLinearGradientLayer : CALayer
@property (nullable, nonatomic, copy) NSArray<UIColor *> *colors;
@property (nullable, nonatomic, copy) NSArray<NSNumber *> *locations;
@property (nonatomic) CGPoint startPoint;
@property (nonatomic) CGPoint endPoint;
@property (nonatomic) BOOL useAngle;
@property (nonatomic) CGPoint angleCenter;
@property (nonatomic) CGFloat angle;
@end