I\'m using the standard setup procedure for Mobclix
in an iOS
app and I\'m calling the requestAndDisplayAdFromViewController:
method from
You're calling it from viewWillAppear - at this point, the view is not necessarily in the hierarchy yet (it WILL appear, doesn't mean it has appeared yet). Try calling it from viewDidAppear, which is called when the view is confirmed to be in the hierarchy.
You can also try to display the view in the viewDidLoad method.
You should try moving this code to viewDidAppear.
From the Apple documentation on viewWillAppear:
This method is called before the receiver’s view is about to be added to a view hierarchy
Try to move your code [fullScreenAdViewController requestAndDisplayAdFromViewController:self];
to viewDidAppear
.