I am working on integrating an ad provider into my app currently. I wish to place a fading message in front of the ad when the ad displays but have been completely unsuccess
What if the ad provider's view is not added to self.view but to something like [UIApplication sharedApplication].keyWindow?
self.view
[UIApplication sharedApplication].keyWindow
Try something like:
[[UIApplication sharedApplication].keyWindow addSubview:yourSubview]
or
[[UIApplication sharedApplication].keyWindow bringSubviewToFront:yourSubview]