0

I have added Mobclix Ads successfully to my app but its showing in first view only and not showing in subviews . I tried a lot but I am not getting the solution.
If anyone can help me please reply

Thanks in advance.

deepti
  • 206
  • 2
  • 15
  • 1
    I got the answer by only adding this line to bring subview to front and mobclix ad is showing in every subviews. [self.view bringSubviewToFront:self.adView]; here adView is the reference of Class MobclixAdView. – deepti May 17 '12 at 10:10
  • hey @deepti can guide me how did you get the Mobclix ads i am getting trouble to get in my view thanks! – swiftBoy Aug 23 '12 at 07:52

1 Answers1

1

I got the answer by only adding this line to bring subview to front where another subview is added to view and mobclix ad is showing in every subviews.

[self.view bringSubviewToFront:self.adView];  

here adView is the reference of Class MobclixAdView.

deepti
  • 206
  • 2
  • 15