AliyunIPaint

@interface AliyunIPaint : NSObject

画笔

  • 线条颜色

    Declaration

    Objective-C

    @property (nonatomic, strong) UIColor *lineColor
  • 线条宽度

    Declaration

    Objective-C

    @property (nonatomic) CGFloat lineWidth;
  • 线条阴影颜色

    Declaration

    Objective-C

    @property (nonatomic, strong) UIColor *shadowColor
  • 线条阴影宽度

    Declaration

    Objective-C

    @property (nonatomic) CGFloat shadowWidth;
  • 初始化方法

    Declaration

    Objective-C

    - (instancetype)initWithLineWidth:(CGFloat)lineWidth lineColor:(id)lineColor;

    Parameters

    lineWidth

    线条宽度

    lineColor

    线条颜色

    Return Value

    self