Skip to content

Instantly share code, notes, and snippets.

@samsonjs
Created June 30, 2012 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samsonjs/3025819 to your computer and use it in GitHub Desktop.
Save samsonjs/3025819 to your computer and use it in GitHub Desktop.
Example of using AdMob mediation with Tap for Tap
//
// ExampleAdMobViewController.m
// TapForTapAds
//
#import "ExampleAdMobViewController.h"
#import "GADBannerView.h"
#import "TapForTapAdMob.h"
@interface ExampleAdMobViewController ()
@property (nonatomic, retain) GADBannerView *bannerView;
@end
@implementation ExampleAdMobViewController
@synthesize bannerView;
- (void)viewDidLoad
{
[super viewDidLoad];
self.bannerView = [[GADBannerView alloc] initWithAdSize: kGADAdSizeBanner];
self.bannerView.adUnitID = @"YOUR ADMOB MEDATION ID";
self.bannerView.rootViewController = self;
[self.view addSubview: self.bannerView];
[self.bannerView loadRequest: [GADRequest request]];
}
- (void)viewDidUnload
{
[super viewDidUnload];
self.bannerView = nil;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment