동영상 애셋이 포함되지 않은 맞춤 네이티브 광고 형식과 함께 공개 측정을 사용하려는 경우 Open Measurement API를 직접 호출해야 합니다. 디스플레이 유형 맞춤 네이티브 광고 형식의 Open Measurement는 버전 7.43.0 이상에서만 지원됩니다. 동영상 애셋과 함께 맞춤 네이티브 광고 형식을 사용하는 경우 이 가이드를 따를 필요가 없습니다. Google 모바일 광고 SDK가 개발자를 대신하여 동영상 애셋의 조회가능성을 추적합니다.
기본 요건
- Google 모바일 광고 SDK 버전 7.44.0 이상
- 모바일 광고 SDK를 통한 Open Measurement를 참고하세요.
- 맞춤 네이티브 광고 형식을 통합합니다.
- 조회가능성 측정 업체 구성 및 광고 항목에 할당
- Ad Manager UI에서 맞춤 형식을 만들 때 파트너 이름을 입력합니다.
광고 로드
광고를 로드하는 것은 Open Measurement를 사용하든 사용하지 않든 동일합니다. 이 경우 간단한 ViewController
를 사용하여 GADNativeCustomFormatAd
로드를 보여줍니다.
@interface OpenMeasurementNativeCustomFormatAdViewController ()
<GADNativeCustomFormatAdLoaderDelegate> {
IBOutlet UIView *_parentView;
GADAdLoader *_adLoader;
GADNativeCustomFormatAd *_customTemplateAd;
MySimpleNativeAdView *_simpleNativeAdView;
}
@end
@implementation OpenMeasurementNativeCustomFormatAdViewController
- (void) viewDidLoad {
[super viewDidLoad];
_adLoader = [[GADAdLoader alloc] initWithAdUnitID:@"your ad unit ID"
rootViewController:self
adTypes:@[ kGADAdLoaderAdTypeNativeCustomFormat ]
options:nil];
_adLoader.delegate = self;
[self loadAd];
}
- (void) loadAd {
GAMRequest *request = [GAMRequest request];
[_adLoader loadRequest:request];
}
...
@end
보기 등록 및 측정 시작
GADNativeCustomFormatAd
를 표시할 때는 displayAdMeasurement.view
속성을 사용하여
GADNativeTemplateAd
에 맞춤 광고 보기를
등록해야 합니다.
또한 SDK에 광고 측정을 시작하도록 명시적으로 알려야 합니다. 이렇게 하려면 GADNativeCustomFormatAd
의 displayAdMeasurement
속성에서 startWithError:
메서드를 호출합니다. startWithError:
는 기본 스레드에서 호출되어야 하며 후속 호출은 아무런 효과가 없습니다.
@implementation OpenMeasurementNativeCustomFormatAdViewController
...
#pragma mark - GADNativeCustomFormatAdLoaderDelegate
- (void) adLoader:(GADAdLoader *) adLoader
didReceiveNativeCustomFormatAd:(GADNativeCustomFormatAd *)nativeCustomFormatAd {
NSLog(@"Received custom native ad: %@", nativeCustomFormatAd);
_customTemplateAd = nativeCustomFormatAd;
// Put the custom native ad on screen.
_simpleNativeAdView =
[[NSBundle mainBundle] loadNibNamed:@"SimpleCustomNativeAdView"
owner:nil
options:nil]
.firstObject;
[_parentView addSubview:_simpleNativeAdView];
[_simpleNativeAdView populateWithCustomNativeAd:_customTemplateAd];
// Set the top-level native ad view on the GADNativeCustomFormatAd so the
// Google Mobile Ads SDK can track viewability for that view.
_customTemplateAd.displayAdMeasurement.view = _simpleNativeAdView;
// Begin measuring your impressions and clicks.
NSError *error = nil;
[_customTemplateAd.displayAdMeasurement startWithError:&error];
if (error) {
NSLog(@"Failed to start the display measurement.");
}
}
...
@end
그러면 끝입니다. 앱을 출시하면 측정 데이터가 수신되기 시작하지만 IAB 인증 절차를 거치기 전에는 데이터가 인증되지 않습니다.