如何在iPhone应用程序中获取来自leadbolt的横幅广告

时间:2012-03-29 07:48:09

标签: iphone objective-c uiwebview leadbolt

我正在尝试将Leadbolt广告整合到我的iphone应用程序中,我通过leadbolt网站添加横幅广告,以便在我的iphone应用程序上显示,并显示以下对话框:

enter image description here

令我困惑的是如何在我的代码中使用此链接来使用uiwebview进行网址请求来整合横幅广告,请帮助我。感谢。

2 个答案:

答案 0 :(得分:4)

SDK允许使用更高级的广告单元,例如通知,叠加层,应用图标等。这些广告单元通常表现更好,整体提供更好的回报。如果您只对HTML横幅感兴趣,那么您无需链接SDK。

但是,这应该可以帮到你:

NSString *pageHTML = @"<script type=\"text/javascript\" src=\"http://ad.leadbolt.net/show_app_ad.js?section_id=my_section_id\"></script>"];
[myWebView loadHTMLString:pageHTML baseURL:nil];

您可以随时通过leadbolt.com与我联系,并提供您的机票ID(ROA-618293)。

答案 1 :(得分:0)

将其添加到此处以供将来使用:

在ios cocos2d app中

 UIView* glView = [CCDirector sharedDirector].view;
 LeadboltOverlay *ad = [LeadboltOverlay createAdWithSectionid:@"PLACE_KEY_HERE" view:glView];

    // adjust the banner dynamically by 50 pixels from its designated position
[ad setAdditionalDockingMargin:[NSNumber numberWithInt: 50]];
[ad loadAd];

在普通的ios app中用

替换行
LeadboltOverlay *ad = [LeadboltOverlay createAdWithSectionid:@"PLACE_KEY_HERE" view:self.view];

对于横向模式,请在[ad loadAd];

之前添加
[LeadboltOverlay setLandscapeMode:@"1"]