전면 광고
전면광고는 화면 전체를 덮는 형태의 광고입니다. 다음을 참고하여 전면광고를 연동합니다.
1. 인스턴스 생성
#import <AdPopcornSSP/AdPopcornSSPInterstitialAd.h>
@interface AdPopcornSSPInterstitialADViewController () <AdPopcornSSPInterstitialAdDelegate>
{
AdPopcornSSPInterstitialAd *_sspInterstitialAd;
}
@endclass ViewController: UIViewController, APSSPInterstitialAdDelegate
{
// Interstitial
var interstitialAd: AdPopcornSSPInterstitialAd!
}@implementation AdPopcornSSPInterstitialADViewController
- (void)viewDidLoad {
[super viewDidLoad];
_sspInterstitialAd = [[AdPopcornSSPInterstitialAd alloc] initWithKey:@"YOUR_APP_KEY" placementId:@"YOUR_PLACEMENT_Id" viewController:self];
}
@endclass ViewController: UIViewController, APSSPInterstitialAdDelegate
{
// Interstitial
var interstitialAd: AdPopcornSSPInterstitialAd!
override func viewDidLoad() {
super.viewDidLoad()
interstitialAd = AdPopcornSSPInterstitialAd.init(key: "YOUR_APP_KEY",
placementId: "YOUR_PLACEMENT_Id", viewController: self)
}
}1) Placement ID 변경
2. 광고 요청
3. 광고 노출
4. 광고 배경색 변경
5. 델리게이트
delegate
설명
delegate
설명
Last updated