iad

Minimum eCPM on iAds

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...

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? ...

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 ad. Why is this? My iAd is in a UITableViewCell: #import "iAdCell.h" @implementation iAdCell @synthesize adView; - (id)initWithStyle:(...

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, 320, 94); [self.tableView setTableHeaderView:headerView]; adBannerView.hidden = FALSE; } - (void)bannerView:(ADBannerView *)banner...

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 (user 0.880, system 0.500), 14% CPU Elapsed application CPU time (seconds): 0.000, 0% CPU Thread 0: 0 libSystem.B.dylib ...

Problem positioning banner on top of my UITableView

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,...

How to know when a view is displayed? - Using Burstly for Ad integration

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> { ...

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 accepted. ...

iAd error "Ad inventory unavailable" [Solved]

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 ...

[iphone] view.frame.size.height changing in UIViewController

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...

iAd Test App is missing from the iPhone Simulator

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...

iAds showing in Simulator but not on device

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...

iAd banner content Size .. (iAd Support with iOs 4.2 for iPad)

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...

updated to iOS4.1 and iAd "test advertisment" not showing up on simulator

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...

iAd in iphone application "'ADBannerContentSizeIdentifier320x50' undeclared (first use in this function)"

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...

iphone - running app on 3.1 with iAd framework

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. ...

Why iAd keeps showing "Testing Advertisement"?

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 ...

iAd in iPhone animates when not loaded

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...

iAd works on simulator but not on device

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 ...

iAd banner doesn't get updated when moved off-screen (iOS 4.1)

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...