Tagged Questions
0
votes
1answer
62 views
iAd doesn't fit width of screen
I am trying to add an iAd to my iPad app, which only works in landscape. However, when the ad appears, it does not fit the width of landscape (it has the dimensions for portrait). I have set the ...
0
votes
0answers
61 views
iOS - Animate scroll view expanding to fill iAd space
I've set up an iAd to show and hide when it can/cannot access and advert, however when it doesn't show, it leaves a blank space. Preferably I would like to fill this with my scroll box, which already ...
0
votes
3answers
175 views
iAD bottom view when change orientation
Currently I use this to code for loading the iAD banners.
- (void)viewDidLoad
{
[super viewDidLoad];
adView = [[ADBannerView alloc] initWithFrame:CGRectZero];
CGRect adFrame = ...
2
votes
1answer
241 views
How can I find out if AdMob has loaded an ad?
I'm using AdMob as backup for iAd, but I'm having trouble finding out if AdMob delivers..
With iAd I could check with isBannerLoaded or something, but not with AdMob..
Anyway, I've got everything ...
2
votes
2answers
66 views
Admobs sometimes appear twice on different locations
We are adding admobs as a backup ad-system for countries without iAd. But sometimes the ads appear twice, the second ad sometimes in the middle of the screen about 100-200 px above the other ad. It ...
2
votes
3answers
116 views
Should we call ads in viewDidLoad or viewDidAppear?
We have a tab-heavy app, which has 5 tabs to use back and forth. We have iAds and admobs(as backup for countries without iAd), and we 'call' the ads in viewDidLoad. Would it make a difference to call ...
0
votes
1answer
195 views
How to correctly implement iAds? iOS6 deprecation issues
I'm currently trying to add iAd to my app, I've come across a couple of tutorials and have the following in viewDidLoad:
adView = [[ADBannerView alloc] initWithFrame:CGRectZero];
adView.frame = ...
-1
votes
7answers
116 views
how to add ads with animation on the navigation bar? [closed]
How can i add ads with animation on to the navigation bar, for example i have some product offers ad for which i need to animate the text showing some multiple offers of the product in the same ad?
0
votes
1answer
144 views
ADBannerView Full Ad Orientation Not Changing
I use the code right out of the Apple iAd Suite demo code to implement my banner ad with a tab bar controller. It was working fine until recently, when I noticed that the test ads became more ...
0
votes
2answers
416 views
iAd alternative for ios ad display?
I have an app, and it currently uses iAd. The problem I have right now is some countries, say Malaysia, is using my app, but iAd does not display ads there, so I get no revenue
only in the US, where ...
0
votes
1answer
122 views
AdBannerView & popover: just hide?
In my iPad app I have a AdBannerView, and I need to present a popover.
If I do so it throws the warning saying that the banner could be hidden: infact even if the banner is not actually hidden, the ...
1
vote
1answer
287 views
iAD - adBannerView rotation
In my iPad app that supports all the device orientation, I add an adBannerView to the main view.
So far so good. It works and the ad rotates as expected.
If I click on a particular ad this is ...
2
votes
1answer
200 views
Can I show “small” 320x50 iAd banners on the iPad?
Since in my country there are very few (if any) iAd banners for iPad, I'd rather prefer to show those for iPhone. I know they are small and not optimized for the iPad, but at least they allow me to ...
0
votes
2answers
482 views
iOS return landscape orientation when is Portrait
I am trying to control iAd size when starts from landscape or portrait. Problem is that device tells that is on landscape when is on portrait! How to handle it? Thank you
- (void)viewDidLoad
{
...
1
vote
1answer
338 views
iAd doesn't fit width when starts from landscape mode
I am switching and scaling properly iAd on portraid and landscape mode excepts when view starts from landscape mode. In this case, iAd remains at narrow width that corresponds to portraid. Then when ...
0
votes
1answer
344 views
iAd notification *const__strong' to parameter of
I am introducing iAd on my app like previous but now, when adView.delegate = self, a notification is showed. Why? code seems to be like always with property and synthezise and also runs properly. ...
3
votes
1answer
356 views
How can I create custom Ads in my iPhone app?
I am developing an iPhone app for my University radio station, and I would like to insert ads (that look and feel just like iAds) but with my own custom designs/content/links so I can sell this ...
0
votes
2answers
371 views
Changing iAd position and placement
I've been looking at various tutorials and code snippets, try to implement iAd. I've been successful to an extent but I need to customise, I can't seem to work out what I need to do to make my ...
6
votes
0answers
1k views
iAds Loading Throttled After Re-Launching App From Background (Also Happens In iAdSuite)
I am trying to implement the NavigationBanner iAdSuite example into my project so that a I can share a single AdBannerView instance across multiple view controllers, but I keep getting the following ...
-2
votes
1answer
180 views
iAd doesn't display in app version downloaded from store [duplicate]
Possible Duplicate:
iAd will not display after uploading app to store
When I test it on my device via Xcode, the iAd works, but when I have uploaded it to the App Store and tested it on a ...
0
votes
1answer
220 views
iAd will not display after uploading app to store
When I test my app on my device, from Xcode, the iAd works, but when I have uploaded it to the App Store and test it on a friend's iPhone, it's just white!
Here is my code:
.h:
@interface ...
0
votes
1answer
243 views
Proper way to remove ads
I have an app that displays an ad, and I have given the user the option to remove ads for $0.99
The in-app purchase system works great, but what is the proper protocol for removing an ad from an app?
...
0
votes
2answers
909 views
iAd Warning — banner view obscured
I am attempting to implement iAd in one of my existing apps. It works, but I keep getting an error message: ADBannerView: WARNING A banner view has an ad but may be obscured. This message is only ...
0
votes
1answer
96 views
Using iAds to purchase new apps?
I am making an iAd for my app, and I want to know if it is possible to allow users to purchase the full version of it using my iAd. Basically, these are the steps the user will need to take:
Click ...
2
votes
1answer
226 views
iads in uitabbarcontroller
I have a UITabBarController like this:
I want iads to be displayed right above the tab bar throughout the app. Rather than adding iads to individual view controller (there are like 15-20 view ...
0
votes
1answer
624 views
Implement a singleton for iAd Banner
Do any one know how to correctly implement one instance for an ADBanner and share it for all view controllers in my app ?
3
votes
1answer
2k views
Putting an ADBannerView on top of a UINavigationController
I'm trying to put an iAd banner in an app that is based on a UINavigationController (it's not the standard nav-base app proposed by xcode, cause I don't need the table view).
I'd like to place an ...
3
votes
3answers
699 views
Is it possible to play 2 video file simultaneously in the same view?
Is it possible to play 2 video files simultaneously in the same view?
I want to do have them both playing over half the screen, a little like this:
_ _ _ _ _ _ _ _ _ _
| |
| ...
1
vote
1answer
205 views
iAds not showing on developer device
On the device I developed my app on, I saw the "test ad" screen on my app before I submitted to the app store. Then I deleted the version of my app that was installed by XCode and downloaded the app ...
0
votes
1answer
530 views
Why are my iAds not displaying in the iPhone Simulator in iOS 4.1?
I'm trying to display iAds in my application that is built against the iOS 4.1 SDK, but I am unable to see these ads in the iPhone Simulator. In the videos that I have seen about integrating iAds in ...
0
votes
1answer
96 views
When using iAds in iPhone and iPad SDK, do we have to provide the ads
I am making an iPhone and iPad app, which has a requirement for iAds.
I am a newbie into using iAds into my apps.
So I wanted to know
Whether we have to provide the iAds for our app while ...
1
vote
1answer
460 views
Is iAds not available for iPad apps?
I have an iPad app, which has a requirement for iAds. But in Library I could not find Ad Banner View.
Is iAds not available for iPad?
I am using iOS SDK 4.1
What are the other alternatives for ...
1
vote
1answer
376 views
Can't add iAd delegate to ViewController
I'm trying to add iAd into my project. I'm following this tutorial http://bees4honey.com/blog/tutorial/how-to-add-iad-banner-in-iphoneipad-app/
I just added the iAd.framework package to my project ...
0
votes
4answers
632 views
iAd appears on simulator but not on device
When I run app on simulator(4.0), iAd is appearing as Test advertisements. But when I deployed the app on ipod(4.0) , iAd is not appearing, even as Test advertisements.
Please help me out as early as ...
0
votes
1answer
214 views
iAd appears on simulator but not on device
When I run my application I can see my iAd in the simulator, that is pre-filled with "Test Advertisement"
However, when I run the application on my device, the iAd area is blank, with no pre-filled ...
1
vote
1answer
1k views
Will my app get rejected if I place an iAd in a UITableView headerView?
I am displaying iAd's in the headerView of a UITableView. When the user scrolls the iAd disappears because the headerView is no longer visible. I am not sure if this will prevent my app from being ...
1
vote
1answer
478 views
App Crashes because iAd Fails to Resume in Time
My app runs fine when I don't have iAds. As soon as I display an iAd the system shuts down my app because the iAd can't resume in time.
How do I resolve this?
Elapsed total CPU time (seconds): 1.380 ...
0
votes
1answer
571 views
iAd: ADBannerViewDelegate methods only called once after viewDidLoad()
I have the following ADBannerViewDelegate implementations:
#pragma mark ADBannerViewDelegate Methods
- (void)bannerViewDidLoadAd:(ADBannerView *)banner {
self.headerView.frame = CGRectMake(0, 0, ...
0
votes
2answers
1k views
iAd appears in simulator but not on device
When I run my application I can see my iAd in the simulator, that is pre-filled with "Test Advertisement"
However, when I run the application on my device, the iAd area is blank, with no pre-filled ...
0
votes
1answer
398 views
How can I add multiple controls to a UITableView header section?
I have a UISearchDisplayController in the Header section of my UITableView. I would like to display an iAd right above that. How can I accomplish this?
0
votes
1answer
799 views
ADBannerView in UITableViewCell
What is the best-practice for placing ads in your table view cells? Here's my code, which works until the banner receives the transitionToNextBanner event, which then crashes my app.
UITableViewCell ...
2
votes
3answers
7k views
How do I hide iAd banners when no ads are being served?
Anyone able to offer a little help on this? I just received feedback from Apple advising my app could not be accepted because it contained adbanners that were still visible when no ads were being ...
