我正在尝试在iOS设备上测试广告系列广告,问题是如果我设置了testDevices
,我会得到一些测试广告;如果没有,我会得到真实的广告,但不是我为之创建的广告运动。 Android应用程序运行正常,并显示了所需的广告。可能是什么问题?我尝试使用android广告和应用程序ID,但仍然得到一些测试广告,而不是广告系列中的广告。
代码示例
self.adLoader = [[GADAdLoader alloc]
initWithAdUnitID:@"ad_unit_id"
rootViewController:self
adTypes:@[kGADAdLoaderAdTypeUnifiedNative]
options:@[]];
self.adLoader.delegate = self;
GADRequest *request = [GADRequest request];
[request setTestDevices:@[ @"test_device_id" ]];