My app has been on the app store starting September 1. Every day, I monitor the eCPM which has been around $10-$15.
Today, however, the eCPM shows to be $1.5. I am surprised that this was even possible with iAd. Considering that apple gets $10 per 1000 impressions, I assume the minimum number a developer makes is $6 per 1000 impression...
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?
...
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 ad.
Why is this?
My iAd is in a UITableViewCell:
#import "iAdCell.h"
@implementation iAdCell
@synthesize adView;
- (id)initWithStyle:(...
I have the following ADBannerViewDelegate implementations:
#pragma mark ADBannerViewDelegate Methods
- (void)bannerViewDidLoadAd:(ADBannerView *)banner {
self.headerView.frame = CGRectMake(0, 0, 320, 94);
[self.tableView setTableHeaderView:headerView];
adBannerView.hidden = FALSE;
}
- (void)bannerView:(ADBannerView *)banner...
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 (user 0.880, system 0.500), 14% CPU
Elapsed application CPU time (seconds): 0.000, 0% CPU
Thread 0:
0 libSystem.B.dylib ...
I want to be able to display an ADBannerView right above my UITabBar (which displays a UITableView). Unfortunately my banner is not positioning correctly. It will appear right below the UITableView, and then as soon as I scroll, the banner will remain in the middle of my UITableView.
I want the banner to appear right above the UITabBar,...
I am trying to use Burstly to serve iAds and adMob ads into my iPhone app. I followed their guide
http://docs.burstly.com/guides/ad-serving-quick-start-guide.html
Here's a snippet of what I have...
MyViewController.h
@interface MyViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, OAIAdManagerDelegate> {
...
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 accepted.
...
I'm adding iAd to my app. Now, in simulator, it works well but when I load it on a device (v4.1) the ADBannerViewDelegate calls bannerView:didFailToReceiveAdWithError: with this description on the error.userInfo
{
ADInternalErrorCode = 3;
NSLocalizedFailureReason = "Ad inventory unavailable";
}
I think my iAd Network setup is ...
Inside my view, I have a table and an ad banner, all of which are created through Interface Builder. But I noticed that my view.frame.size.height seems to change through the course of execution of my app even though I haven't changed the size.
Can someone explain to me why this is happening?
What I'm doing is moving the ad banner off s...
I ran into a strange issue - iAd Tester app is no longer present in iPhone Simulator so I can't test iAds on it. I am using Xcode 3.2.4 with iOS 4.1 and iAd Framework 1.1.1. I tried re-installing the whole thing (Xcode and iAd package) and resetting the content of the simulator using command from the menu and manually deleting everythin...
I have incorporated iAds into a new version of my iOS program. Everything seems to be working great in the simulator, with test iAds being loaded and the ADAdBanner being moved up into the screen when ad material comes in.
When I run the program on my device, however, no test ads get loaded.
Is this normal behavior, or should I ha...
We have an application that support iAds. Apparently iOs 4.2 for iPad will support this, but
doing some tests with the beta SDK, there is no way to resize de banner to make it fit on the DetailView of a SplitViewController.
in Iphone you set the required content size identifiers for an ad banner, which are ADBannerContentSizeIdentifier3...
Hello,
I added the iAd as written in tutorials and in my app it always calls didFailToReceiveAdWithError. bannerViewDidLoadAd is never invoked. I know I'm supposed to see a "test advertisment" Ad, but nothing shows up, because the function bannerViewDidLoadAd is never being invoked.
I've looked into other questions, but didn't find an a...
Hello,
I am using iAd in my iphone 4.0 application but after adding the ADBannerView on view and when i try to set the ADBannerView properties using below code :-
adViewTemp.requiredContentSizes= [NSSet setWithObject:ADBannerContentSizeIdentifier320x50];
I get the below error message:-
error:
'ADBannerContentSizeIdentifier320x...
Hi, I built my app in iOS 4.1 and the app has iAd Framework.
But I want to set deployment target as 3.1 so that app runs perfectly on older iPhone devices as well.
To add iAd Banner view, I'm used IB and added the ads to my app.
How can I make my app run on older iPhone OS and on Ipads.
...
My app is approved on AppStore. In the iAd section of the screen, it keeps showing the black "Testing Advertisement" by Apple instead of a real ad. Is there any configuration I missed? Thanks
...
I have added a banner view for implementing iAd in the bottom of the screen. But when running on the simulator the banner view is slightly above the frame fixed for it. It appears as a transparent strip and is not selectable. After sometime it automatically comes to the bottom as a black strip saying Test Advertisement.
I want the banne...
I am updating an app with iAd. The current version has iAd, and everything works great. But the changes have been substantial enough that I want to test the ads again before I submit the update.
When I test iAd on the simulator, I get the test advertisement with no problem. When I try to test it on the device, all I get are calls to ...
There are a lot of questions about problems with iAds in iOS 4.1.
I don't have problems with getting 2-3 first test banners. Delegate stops receiving bannerViewDidLoadAd: and bannerView:didFailToReceiveAdWithError: messages after been moved off-screen in response to bannerView:didFailToReceiveAdWithError:.
The same code worked with iO...