首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >不显示Inmobi广告

不显示Inmobi广告
EN

Stack Overflow用户
提问于 2013-09-10 15:54:35
回答 1查看 417关注 0票数 2

我在应用程序中添加了应用程序商店URL。但我想在我的设备上测试一下xcode的广告。广告正在加载,但不会显示在屏幕上。我在印度,是这个地方特定的问题还是Inmobi不提供测试广告。

EN

回答 1

Stack Overflow用户

发布于 2013-09-10 16:09:51

你把它作为子视图添加到屏幕上了吗?

代码语言:javascript
复制
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];  // Did you added this line? this line add the adView as a subview
[inmobiAdView loadIMAdRequest];
票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/18713428

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档