AliyunEffect

@interface AliyunEffect : AliyunJSONModel

* A model base class that defines effects.

  • * The path of the effect.

    Declaration

    Objective-C

    @property (nonatomic, copy) NSString *path;
  • * The path of the effect icon.

    Declaration

    Objective-C

    @property (nonatomic, copy) NSString *icon;
  • * The effect name.

    Declaration

    Objective-C

    @property (nonatomic, copy) NSString *name;
  • * Gets the effect id.

    Declaration

    Objective-C

    - (int)effectVid;

    Return Value

    id

  • * Sets the effect id.

    Declaration

    Objective-C

    - (void)setEffectVid:(int)vid;

    Parameters

    vid

    id

  • * Initializes an effect object with an effect path.

    Declaration

    Objective-C

    - (instancetype)initWithFile:(NSString *)path;

    Parameters

    path

    The effect path.

    Return Value

    An effect object.

  • * Internal method.

    Declaration

    Objective-C

    - (instancetype)initWithDict:(NSDictionary *)dict;

    Parameters

    dict

    dict

    Return Value

    AliyunEffect