AliyunIPaint
@interface AliyunIPaint : NSObject
* A class that defines paint brushes.
-
* The color of the paint brush.
Declaration
Objective-C
@property (nonatomic, strong) UIColor *lineColor -
* The size of the paint brush.
Declaration
Objective-C
@property (nonatomic) CGFloat lineWidth; -
* The color of the shadow.
Declaration
Objective-C
@property (nonatomic, strong) UIColor *shadowColor -
* The size of the shadow.
Declaration
Objective-C
@property (nonatomic) CGFloat shadowWidth; -
* Initializer.
Declaration
Objective-C
- (instancetype)initWithLineWidth:(CGFloat)lineWidth lineColor:(id)lineColor;Parameters
lineWidthThe paint brush size.
lineColorThe paint brush color.
Return Value
self
AliyunIPaint Class Reference