Long time reader, first time poster! I have a question about App Delegates. In my app delegate I begin my Mobclix implementation like so:
Code:
[Mobclix startWithApplicationId:@"myAppID"];
I then proceed to implement Mobclix in my view controllers with the following:
Code:
self.adView = [[[MobclixAdViewiPhone_320x50 alloc] initWithFrame:CGRectMake(0.0f, 410.0f, 320.0f, 50.0f)] autorelease];
My problem is this that this only works in the root view controller. In all the other view controllers in my application, the code above will not produce Mobclix test ads.
How can I make it so I receive test ads in all the view controllers, not just the root one?