I want to create an iPad app which will initially show a Table View and on click of any of the table rows show a detail view (a UIWebView)
Now on this detail view, I also want to show an iAd (may be at the bottom)
How do I do this? Any example app with source code for reference would be really helpful . Thank you.
I would start by creating a custom UIViewController that operates as a UIWebViewDelegate & AdBannerViewDelegate. The view controller will load two subviews–a UIWebView and an AdBannerView.
A tap on your UITableViewCell pushes the custom view controller, which is responsible for loading appropriate content in the UIWebView & displaying the contents of the AdBannerView.