AliyunICanvasViewDelegate

@protocol AliyunICanvasViewDelegate <NSObject>

/****
 Starts drawing.
 
 @param startPoint The start point.
 */
- (void)startDrawingWithCurrentPoint:(CGPoint)startPoint;

/****
 Ends drawing.
 
 @param endPoint The end point.
 */
- (void)endDrawingWithCurrentPoint:(CGPoint)endPoint;
@end

Undocumented

  • * Starts drawing.

    Declaration

    Objective-C

    - (void)startDrawingWithCurrentPoint:(CGPoint)startPoint;

    Parameters

    startPoint

    The start point.

  • * Ends drawing.

    Declaration

    Objective-C

    - (void)endDrawingWithCurrentPoint:(CGPoint)endPoint;

    Parameters

    endPoint

    The end point.