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.
1234567891011121314 |
- #import <UIKit/UIViewController.h>
- #import <UnityAds/UMONRewardablePlacementContent.h>
- #import <UnityAds/UnityAdsFinishState.h>
-
- @protocol UMONShowAdDelegate <NSObject>
- - (void)unityAdsDidStart: (NSString *)placementId;
- - (void)unityAdsDidFinish: (NSString *)placementId withFinishState: (UnityAdsFinishState)finishState;
- @end
-
- @interface UMONShowAdPlacementContent : UMONRewardablePlacementContent
- @property (strong, nonatomic) id<UMONShowAdDelegate> delegate;
- - (void)show: (UIViewController *)viewController;
- - (void)show: (UIViewController *)viewController withDelegate: (id<UMONShowAdDelegate>)delegate;
- @end
|