Integrate AdMob in iOS Application; Aasim Naseem, January 10, 2012 | Read Count: 13,513April 27, 2025 Category: My Tutorials > iOSHello Everyone; Hope winters are going good around you; Today’s menu is again simple and short; We’ll learn how to integrate AdMob in an iOS application. I will show you the easiest way to integrate AdMob in the application. So lets start; Step 1: Open the Xcode, Create a new project using View base application. Give the application “AdmobiPhone”. Step 2: Xcode automatically creates the directory structure and adds essential frameworks to it. You can explore the directory structure to check out the content of the directory. Step 3: Expand classes and notice Interface Builder created the AdmobiPhoneViewController class for you and generated a separate nib, AdmobiPhoneViewController.xib for the “AdmobiPhone”. Step 4: First go to www.admob.com site, we need to register in this site for AdMob. After login, goto Sites &Apps –> Add site/App –> Select a site or app type –> Select iPhone App (See figure 1) Now you can download the AbMob SDK, it is required for publishing Ads and drag drop into the Xcode project. Step 5: We need to add framework in project, so select the framework -> add New Framework -> Select AudioTollbox.framework, MediaPlayer.framework,MessageUI.framework and SystemConfiguration.framework add in the Framework folder. Step 6: We need to add one background image in the project. Step 7: Open the AdmobiPhoneViewController.h file, in this file we need to import GADBannerView.h file and create a instance of GADBannerView class. So make the following changes: #import #import "GADBannerView.h" @interface AdmobiPhoneViewController : UIViewController { GADBannerView *AbMob; } @end Step 8: Now open the AdmobiPhoneViewController.m file and make the following changes in the file. </pre> <div>#import "AdmobiPhoneViewController.h" #define AdMob_ID @"a14dccd0fb24d45" // You can get this id from www.admob.com. This is Publisher ID @implementation AdmobiPhoneViewController - (void)dealloc { AbMob.delegate = nil; [AbMob release]; [super dealloc]; } - (void)didReceiveMemoryWarning { // Releases the view if it doesn’t have a superview. [super didReceiveMemoryWarning]; // Release any cached data, images, etc that aren’t in use. } #pragma mark – View lifecycle // Implement viewDidLoad to do additional setup after loading the view, typically from a nib. - (void)viewDidLoad { [super viewDidLoad]; AbMob = [[GADBannerView alloc] initWithFrame:CGRectMake(0.0, self.view.frame.size.height - GAD_SIZE_320×70.height, GAD_SIZE_320×70.width, GAD_SIZE_320×70.height)]; AbMob.adUnitID = AdMob_ID; AbMob.rootViewController = self; [self.view addSubview:AbMob]; GADRequest *r = [[GADRequest alloc] init]; r.testing = YES; [AbMob loadRequest:r]; } - (void)viewDidUnload { [super viewDidUnload]; // Release any retained subviews of the main view. // e.g. self.myOutlet = nil; } - (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return (interfaceOrientation == UIInterfaceOrientationPortrait); } @end</div> <pre> Step 9: Now compile and run the application on the device. from: eduMobile; Author Profile Aasim Naseem Hey, Thanks for your interest. I’m a PMP, AWS Solutions Architect, and Scrum Master certified professional with 17+ years of hands-on experience leading projects, building teams, and helping organizations deliver software solutions better, faster, and smarter. Outside of work, I’ve got a deep curiosity for history — especially ancient civilizations like Egypt. I also enjoy reflecting on the everyday moments that shape how we live and work. This blog is my space to share insights, lessons, and thoughts from both my professional journey and personal interests. Thanks for reading — and I hope you will find something here that matches your interest. Latest entries IslamJune 6, 2025 | Read Count: 336Economic impact of Eid-ul-Adha PMP CertificationMay 23, 2025 | Read Count: 565Best PMP Study Resources for 2025 (Books, Courses, Tools & More) Agile & FrameworksMay 7, 2025 | Read Count: 516Agile vs Scrum: Finally Understanding the Difference Agile & FrameworksApril 25, 2025 | Read Count: 543When Not To Use Agile: 5 Signs You Need a Different Approach iOS AbMob.adUnitIDAdMobGADBannerViewgoogle admobhow to integrate Admob in iphoneinterface builderxcode
iOS Local history/revision of files in Xcode February 24, 2013 | Read Count: 12,539April 9, 2025 Category: My Tutorials > iOSHello friends .. hope things are going good on your desk .. Last night I was going through my tweets, and there I found something really interesting; I crawled it for few minutes and after reading some blog posts I came to know about a very useful… Read More
iOS Substrings from NSString March 13, 2012 | Read Count: 13,530April 9, 2025 Category: My Tutorials > iOSHello iOS geeks … Here is a small tip for getting a substring from NSString; NSString class provide following methods for splitting a string; – (NSString *)substringFromIndex:(NSUInteger)from; – (NSString *)substringToIndex:(NSUInteger)to; – (NSString *)substringWithRange:(NSRange)range; – (NSRange)rangeOfString:(NSString *)<em>aString;</em> Following code will demonstrate itself; Author Profile Aasim Naseem Hey, Thanks for your interest…. Read More
iOS Pattern Colors are Not Supported by the iPhone SDK Prior to 3.0 February 4, 2011 | Read Count: 14,481May 5, 2025 Category: My Tutorials > iOSLast day i opened and compiled an old project of iPhone; I’m using Xcode 3.2.5 with iOS 4.2 on Mac OS X 10.6.6; When i complied that project I got the following error in multiple xib files Pattern colors are not supported by the iPhone SDK… Read More
hi, i just tried it and really grateful :] I’m just having little error. what should i do this is the error msg : use of undeclared identifier GAD_SIZE_300 in file : mainViewcontroller.m Reply
hmmm…. GAD_SIZE is basically the size of banner defined in mainViewController … which version of Admob you are using? Reply
i am currently using the latest ver. admob 6.2.1.. for ios.. what version should i use? thank you for replying! ;] Reply
Best tutorial of AdMob mediation AdMob_Mediation_Demo You can download it and use it in your project Reply