inmobi广告覆盖了我的phonegap ios应用程序的顶部

时间:2013-06-12 14:08:48

标签: ios cordova inmobi

我尝试在我的phonegap(2.8.0)应用程序中使用inmobi的js脚本,但是当我点击广告时它失败了。我联系了inmobi,他们告诉我使用ios sdk代码。我已实现此功能,但广告覆盖了我的屏幕顶部。我不是开发人员的对象,而且我处于松散状态。这是我用来将广告放到屏幕上的代码。有没有人知道如何更改代码以使其适合屏幕顶部,然后我的应用程序在下面。

这是来自我的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];
}

我发现了这个,但这是针对不同的横幅系统

enter link description here

0 个答案:

没有答案