Shared iAd banner for UITabBarController based app using XCode 4 with storyboard

It’s fairly simple actually. Just create a new banner view controller for each tab that will be the parent view controller for each tab in your storyboard. Then drag in a Container View object into each banner view controller and embed your child view controllers in each banner view controller. Finally in BannerViewController.m replace the … Read more

how to display test IAd banner in the simulator

Step 1: 1.import iAd Framework to the Application. 2.Provide #import in the particular controller where you want to show your Add. 3.Provide it’s delegate UIViewController 4.Provide one view to that particular ViewController.Assume I have taken @property (weak, nonatomic) IBOutlet UIView *contentView; Step 2: Allocate it in ViewDidLoad method – (void)viewDidLoad { _bannerView = [[ADBannerView alloc] … Read more