VOUIDelegate

@protocol VOUIDelegate <NSObject>

@optional

/**
 This delegate method is called when attempting to initialize its gift package. If it is not implemented, the default envelope will be used.
 Only implement this method if you want to use a custom gift package. This method is used to setup and configure your custom gift package.
 */
- (id<VOGiftPackageFactory>)customGiftPackageFactory;

@end

Undocumented

  • This delegate method is called when attempting to initialize its gift package. If it is not implemented, the default envelope will be used. Only implement this method if you want to use a custom gift package. This method is used to setup and configure your custom gift package.

    Declaration

    Objective-C

    - (nonnull id<VOGiftPackageFactory>)customGiftPackageFactory;

    Swift

    optional func customGiftPackageFactory() -> VOGiftPackageFactory