暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UMONShowAdPlacementContent.h 614B

1234567891011121314
  1. #import <UIKit/UIViewController.h>
  2. #import <UnityAds/UMONRewardablePlacementContent.h>
  3. #import <UnityAds/UnityAdsFinishState.h>
  4. @protocol UMONShowAdDelegate <NSObject>
  5. - (void)unityAdsDidStart: (NSString *)placementId;
  6. - (void)unityAdsDidFinish: (NSString *)placementId withFinishState: (UnityAdsFinishState)finishState;
  7. @end
  8. @interface UMONShowAdPlacementContent : UMONRewardablePlacementContent
  9. @property (strong, nonatomic) id<UMONShowAdDelegate> delegate;
  10. - (void)show: (UIViewController *)viewController;
  11. - (void)show: (UIViewController *)viewController withDelegate: (id<UMONShowAdDelegate>)delegate;
  12. @end