AliyunMoveAction

@interface AliyunMoveAction : AliyunAction

* A class that defines translational motions.

  • * The coordinates of the start point of the motion.

    The coordinate system of the screen is used. The origin (0, 0) is at the top left of the screen.

    Declaration

    Objective-C

    @property (nonatomic) CGPoint fromePoint;
  • * The coordinates of the end point of the motion.

    Declaration

    Objective-C

    @property (nonatomic) CGPoint toPoint;
  • * The moving area of the motion.

    Declaration

    Objective-C

    @property (nonatomic) CGSize displaySize;
  • * The moving type of the motion. - see: AliyunMoveActionTranslateType. defualt is to. API_AVAILABLE(3.25.0)

    Declaration

    Objective-C

    @property (nonatomic) AliyunMoveActionTranslateType translateType;
  • Deprecated

    deprecated

    * Initializer.

    Declaration

    Objective-C

    - (id)initWithRestore:(NSDictionary *)dict;

    Parameters

    dict

    The initialization parameter.

    Return Value

    A translational motion object.