I want to ask something about iAd's
.
My main view controller include ADBannerViewDelegate
and shows iAd
banner correctly.
But I need to show iAd
in all views
so should I transfer the same banner to all my view?
Or it is better to create a new iAd
banner in IB
for each view?
like here:
TempsReel *tempsReel = [[TempsReel alloc]initWithNibName:@"TempsReel" withBanner:adView];
[self.navigationController pushViewController:tempsReel animated:YES];
[tempsReel release];
Thanks for your help.