시작하기
GFP SDK 에서는 인스트림 동영상 광고를 표시할 수 있게 도와줍니다.

선행 챕터
GFPSDK Import
SDK 모듈을 import 합니다.
- Swift
- Objective-C
import GFPSDK
@import GFPSDK;
비디오 광고 제공자 세팅
- GFPVideoProviderOptionNDA : 네이버 디스플레이 비디오 광고
- Swift
- Objective-C
// IMA와 NDA 비디오 광고를 연동하려는 경우 cocoapods 의존성 추가.
GFPAdManager.setup(withPublisherCd: "publisherCd") { (error : GFPError?) in
print("Setup Eror: \(String(describing: error?.description))")
}
// IMA와 NDA 비디오 광고를 연동하려는 경우 cocoapods 의존성 추가.
[GFPAdManager setupWithPublisherCd:@"publisherCd" completionHandler:^(GFPError * _Nullable error) {
NSLog(@"Setup ERROR: %@", error);
}];