I have integrated AdMob in my application like this.
#define AdMob_ID @"a14fd99963270b2"
-(void)viewDidLoad
{
[super viewDidLoad];
GADBannerView *admob = [[GADBannerView alloc] initWithFrame:CGRectMake(0, 360, 320, 50)];
admob.adUnitID = AdMob_ID;
admob.rootViewController=self;
[self.view addSubview:admob];
GADRequest *req=[[GADRequest alloc] init];
req.testing=YES;
[admob loadRequest:req];
}
This is giving me be by default google,

If i change AdMob_ID to my application’s id then add is not shown.
What can be issue?
At the time of creating AdMobID it is asking for the iTunes connect application link.
This link can be obtained after the application gets online.
Thanks in advance.
Are you sure that you aren’t in test mode? Admob displays that image for testing purposes, good news is that your admob integration works. In order to serve live ads, make sure you aren’t in test mode.