Questions tagged [adbannerview]

The ADBannerView class provides a view that displays banner advertisements to the user. When the user taps on a banner view, the view triggers an action programmed into the advertisement. For example, an advertisement might show a movie, present an additional modal advertisement, or launch Safari to show a web page. Other actions are possible.

224 questions
0
votes
1 answer

Need of refresh of iAd Banner?

in my IOS game, I have two ViewControllers: One MenuViewController and the other one is the ViewController, on which I have a SKView for the game itself and a UIImageView, which I use as a restartView to restart the game after "gameover" and is only…
appcodix
  • 342
  • 2
  • 15
0
votes
1 answer

adBannerView in UIScrollView possible?

My adBannerViewdoesn't appear in my UIScrollView. I suppose it is because user doesn't visualize the ad if he does not scroll. So Apple does not allowed it. Is it right ? I have not found anything on the subject on the web. Cheers.
GoldXApp
  • 2,397
  • 3
  • 17
  • 26
0
votes
1 answer

Hide UINavigationItem in IOS

The code I wrote was working fine until I brought about a BannerView to show ads in the app. To bring the BannerView in all views I used the following code in AppDelegate's didFinishLaunchingWithOptions: - (BOOL)application:(UIApplication…
0
votes
0 answers

Why does ADBannerView show up strangely between devices in my Cocos2D V3 RC1 project?

I create my AdBannerView like this: adBannerView = [[ADBannerView alloc] init]; adBannerView.backgroundColor = [UIColor whiteColor]; adBannerView.autoresizingMask = UIViewAutoresizingFlexibleWidth; CGSize sizeToFit = [adBannerView…
Alexandru
  • 12,264
  • 17
  • 113
  • 208
0
votes
1 answer

Pausing iAd Request Issue

So when my view controller loads I start sending adBanner requests.. - (void)viewDidLoad{ [super viewDidLoad]; self.canDisplayBannerAds = YES; } But I get an error when starting my scene for my game even though I set canDisplayBannerAds…
4GetFullOf
  • 1,738
  • 4
  • 22
  • 47
0
votes
1 answer

canDisplayBannerAds and Airplane Mode

I'm testing my app in the Sandbox, and I'm using canDisplayBannerAds with iOS7. I had this working acceptably until I did some tests where I started the app in Airplane Mode (important to me because I need to detect if there is a network connection…
Chris Prince
  • 7,288
  • 2
  • 48
  • 66
0
votes
2 answers

Unity AdBannerView

The Unity ADBannerView example code is: private ADBannerView banner = null; void Start() { banner = new ADBannerView(ADBannerView.Type.Banner, ADBannerView.Layout.Top); ADBannerView.onBannerWasClicked += OnBannerClicked; …
Beastwood
  • 446
  • 3
  • 19
0
votes
2 answers

iOS ADBannerview - do the ads go away on their own?

Do the ads go away on their own? I've read that the ads should be shown for thirty seconds before closing them, implying that their display is managed by the app, but in pre-release testing they disappear after thirty seconds on their own. Also, if…
Yimin Rong
  • 1,890
  • 4
  • 31
  • 48
0
votes
1 answer

iAd Banner white continue to showing

Adding a iAd banner in my app, but when the banner is empty (white) the banner not become hidden, i try two type of code one is: on my .h #import @interface HomeViewController : UIViewController { …
BlackSheep
  • 1,087
  • 12
  • 29
0
votes
1 answer

ADBannerView.h:20:8: Redefinition of 'NSString' as different kind of symbol

I get this error: Redefinition of 'NSString' as different kind of symbol at line: extern NSString * const ADErrorDomain; in ADBannerView.h It used to work, has it something to do with Switching SDKs? from ios6 to ios7?
Mike Zriel
  • 1,575
  • 1
  • 17
  • 28
0
votes
2 answers

ADBanner in iOS 7 self.canDisplayBannerAds

I'm trying to integrate iAd in iOS 7 app. According to Apple tutorial, one just have to use method: self.canDisplayBannerAds and iAd will work without a hitch. As I use it according to the tutorials, it gives a blank white screen. How to…
asadullah07
  • 1,461
  • 2
  • 10
  • 9
0
votes
1 answer

adMob Ad Banner without ovarlaping my main view in android application

I am a beginner in android and I need your help. I have added an adMob adBanner at a bottom of my screen programmatically. Now what I want is, when the ad appears, it will push the view/views up and make enough spaces for it (example: it will push…
Khaled Saifullah
  • 2,279
  • 3
  • 25
  • 26
0
votes
0 answers

iAd error: setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key adView

I'm after some help understanding why I am getting this error when attempting to run a test app with just an iAd banner: iAdTest[12856:a0b] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[
user2820855
  • 1,229
  • 2
  • 8
  • 9
0
votes
1 answer

I want to remove the GADBannerView after InAppPurchase

In my app i used the InApp purchase after that i want to remove the adds from the GADBannerView but still adds displayed. Any Ideas
0
votes
0 answers

why does the simulator keep calling bannerView: didFailToReceiveAdWithError

I've built a few apps that correctly implemented iAds. The apps are live in the app store and ads are being shown. I now can NOT get any app (including the ones that once worked correctly) to display an iAd on the device or the simulator. I'm…
iOSAppGuy
  • 633
  • 7
  • 23