I tested adMob with iOS simulator. It shows ads at the bottom of the screen. But when I change it to real device the ads not showing.
enter image description here
AppDelegate.m
[GADMobileAds configureWithApplicationID:@"ca-app-pub-7067850045620785~8479598780"];
ViewController.m
self.bannerView = [[GADBannerView alloc] initWithAdSize:kGADAdSizeSmartBannerPortrait];
self.bannerView.adUnitID = @"ca-app-pub-7067850045620785/6404933932";
self.bannerView.rootViewController = self;
[self.bannerView loadRequest:[GADRequest request]];
self.bannerView.delegate = self;