iOS에서 인터스티셜 광고 구현
iOS 앱에서 인터스티셜 광고를 구현합니다. 광고 콘텐츠를 로드하고 Objective-C 또는 Swift 코드를 통해 표시하고 델리게이트를 사용하여 광고 이벤트를 처리합니다.
읽는 시간 1분최근 업데이트: 16일 전
showUnityAdsShowDelegate// Implement a button that calls the show method when clicked: #pragma mark : Buttons - (IBAction)showInterstitialButton:(UIButton *)sender { [UnityAds show:self placementId:@"Interstitial_iOS" showDelegate:self]; }// Implement callbacks for events related to the show method:#pragma mark: UnityAdsShowDelegate- (void)unityAdsShowComplete:(NSString *)placementId withFinishState:(UnityAdsShowCompletionState)state { NSLog(@" - UnityAdsShowDelegate unityAdsShowComplete %@ %ld", placementId, state);}- (void)unityAdsShowFailed:(NSString *)placementId withError:(UnityAdsShowError)error withMessage:(NSString *)message { NSLog(@" - UnityAdsShowDelegate unityAdsShowFailed %@ %ld", message, error); // Optionally execute additional code, such as attempting to load another ad.}- (void)unityAdsShowStart:(NSString *)placementId { NSLog(@" - UnityAdsShowDelegate unityAdsShowStart %@", placementId);}- (void)unityAdsShowClick:(NSString *)placementId { NSLog(@" - UnityAdsShowDelegate unityAdsShowClick %@", placementId);}