我开发了我的第一个免费应用程序(“Aviation DG”),因此添加了 adWhirl。但是,我似乎做错了什么。根本没有广告显示。(AdWhirl 中的设置:90% iAd / 10% AdMob / 10% 用于 1 个自家广告)。我没有看到他们中的任何一个:(
在 iAd 中,我有 45 个请求,0 次展示,在 AdMob 中,我有 152 个请求,152 次展示,但是他们没有显示任何广告(至少我询问过他们是否看到广告的那些人)。
当我测试这个应用程序时,它显示了横幅 iAD 测试(或者不管它说什么,来自苹果的黑色横幅)。
你知道我做错了什么吗?或者是正确安装的东西,我只是没有收到任何广告。如果是这样,那是为什么?
非常感谢您的帮助。目前这可能只是一个小项目,但我打算将广告网络添加到其他应用程序中,很高兴知道它为什么不起作用:)
干杯罗尼
以下是我在 xcode 中所做的:
添加了以下框架:
iAd / AVFoundation / CoreLocation / AddressBook / AudioToolbox / MapKit / MediaPlayer / MessageUI / QuartzCore / SystemConfiguration / libsqlite3.dylib / libz.dylib
添加了文件夹 TouchJSON,添加了来自 AdWhirl Ressources 的文件夹 AdWhirl。
由于我没有在说明 PDF 中找到适配器设置,因此我删除了所有网络,现在适配器文件夹中有以下文件:
- AdWhirlAdapterGoogleAdMobAds.h/.m
- AdWhirlAdapterIAd.h/.m
- AdWhirlAdNetworkAdapter.h
然后我从 adMob 中添加了 AdLibrary:
- GADBannerView.h
- GADBannerViewDelegate.h
- GADInterstitial.h
- GADInterstitialDelegate.h
- GADRequest.h
- GADRequestError.h
- libGoogleAdMobAds.a
然后我更改了广告显示在页面底部的以下部分(在 AdWhirlView.h 中):
#define kAdWhirlAppVer 300
#define kAdWhirlViewWidth 320
#define kAdWhirlViewHeight 50
#define kAdWhirlViewDefaultSize \
(CGSizeMake(kAdWhirlViewWidth,
kAdWhirlViewHeight))
#define kAdWhirlViewDefaultFrame \
(CGRectMake(0,(460-
kAdWhirlViewHeight),kAdWhirlViewWidth, kAdWhirlViewHeight))
#define kAdWhirlDefaultConfigURL @"http://mob.adwhirl.com/getInfo.php"
#define kAdWhirlDefaultImpMetricURL @"http://met.adwhirl.com/
exmet.php"
#define kAdWhirlDefaultClickMetricURL @"http://met.adwhirl.com/
exclick.php"
#define kAdWhirlDefaultCustomAdURL @"http://mob.adwhirl.com/
custom.php"
#define kAWMinimumTimeBetweenFreshAdRequests 4.9f
#define kAdWhirlAdRequestTimeout 10
在我的视图控制器 .m 文件中,我有这个:
#define kSampleAppKey @"x000x00000000x00000x000x0000x000" //the number
of my adwhirl appid
@implementation...
#pragma mark AdWhirlDelegate methods
- (NSString *)adWhirlApplicationKey{
return kSampleAppKey;
}
- (UIViewController *)viewControllerForPresentingModalView{
return self;
}
在视图中确实加载了:
AdWhirlView *awView = [AdWhirlView
requestAdWhirlViewWithDelegate:self];
[self.view addSubview:awView];
[super viewDidLoad];
在视图控制器 .h 文件中:
#import "AdWhirlView.h"
#import "AdWhirlDelegateProtocol.h"
@interface Aviation_DGViewController : UIViewController
<ItemChooserDelegate, InfoDisplayDelegate, AdWhirlDelegate> {