Tuyen Nguyen
Tuyen Nguyen

Reputation: 4479

<Google> Must set the rootViewController property of GADBannerView before calling loadRequest:

I use Google AdMob SDK in my iPhone app, I did set the rootViewController property, delegate property

self.adBannerView.rootViewController = basedViewController;
self.adBannerView.delegate = basedViewController;
[self.adBannerView loadRequest:[GADRequest request]];

but keep getting this message while running the app:

<Google> Must set the rootViewController property of GADBannerView before calling loadRequest:

I manage 3 GADBannerView at the same time, do you know the status of GADBannerView (does it have rootViewController set or not) while debugging the app?

Upvotes: 5

Views: 4975

Answers (2)

abdul sathar
abdul sathar

Reputation: 2396

Use your code at end of View Did Load on your viewcontroller.m

Upvotes: 1

Cape
Cape

Reputation: 56

I think the basedViewController is not created yet. Step 1) Create the viewcontroler Step 2) Assign

Upvotes: 4

Related Questions