How to add iAd below the Tab bar, I have added tab bar in rootviewcontroller
self.window.rootViewController = tabBarController;
For a any single view controller adding iAd in viewController by
[self.contentView addSubview:viewController1.view];
[self.view addSubview:contentView];
[self.view addSubview:adBannerView];
is working , but the code for tab bar controller
[self.contentView addSubview:tabBarcontroller.view];
[self.view addSubview:contentView];
the tab bar controller not loaded, How to add this, thanks in adv