我尝试在我的 phonegap (2.8.0) 应用程序上使用 inmobi 的 js 脚本,但是当我点击广告时它失败了。我联系了 inmobi,他们告诉我使用 ios sdk 代码。我已经实现了这一点,但广告覆盖了我的屏幕顶部。我不是对象 c 开发人员,我处于一个松散的结局。这是我用来将广告放到屏幕上的代码。有谁知道我如何更改代码以使其适合屏幕顶部,然后是我的应用程序。
这是来自我的 MainViewController.m
- (void)webViewDidFinishLoad:(UIWebView*)theWebView
{
// Black base color for background matches the native apps
inmobiAdView = [[IMAdView alloc] initWithFrame:CGRectMake(0, 0, 320, 50) imAppId:INMOBI_APP_ID imAdSize:IM_UNIT_320x50];
// inmobiAdView.delegate = self;
IMAdRequest *request = [IMAdRequest request];
/**
* additional targeting parameters. these are optional
*/
request.gender = kIMGenderMale;
request.education = kIMEducationBachelorsDegree;
// etc ..
inmobiAdView.imAdRequest = request;
[self.view addSubview:inmobiAdView];
[inmobiAdView loadIMAdRequest];
return [super webViewDidFinishLoad:theWebView];
}
我找到了这个,但这是针对不同的横幅系统