비디오 광고 공통 가이드
NAMSDK Import
SDK 모듈을 import 합니다.
- Objective-C
- Swift
@import GFPSDK;
import GFPSDK
비디오 광고 제공자 세팅
- GFPVideoProviderOptionNDA : 네이버 디스플레이 비디오 광고
- Objective-C
- Swift
// IMA와 NDA 비디오 광고를 연동하려는 경우 cocoapods 의존성 추가.
[GFPAdManager setupWithPublisherCd:@"publisherCd" completionHandler:^(GFPError * _Nullable error) {
NSLog(@"Setup ERROR: %@", error);
}];
// IMA와 NDA 비디오 광고를 연동하려는 경우 cocoapods 의존성 추가.
GFPAdManager.setup(withPublisherCd: "publisherCd") { (error : GFPError?) in
print("Setup Eror: \(String(describing: error?.description))")
}
비디오 광고 매니저 타입
- 전/중/후 광고의 스케줄링 지원을 위한 GFPVideoAdScheduleManager를 제공합니다.