I sounds like a stupid question, but it seems I cannot release an adMob GADBannerView.
Admob documentation says don't call "release" when using ARC. Needless to say you cannot call release because it's not allowed and generates an error. I tried this:
@property (nonatomic, strong) GADBannerView *adMobView;
…
[adMobView removeFromSuperview];
adMobView.delegate = nil;
adMobView = nil;
But nothing happens. It becomes nil but still stays on the screen. It supposed to be a subclassed UIView. At the best I can hide it but it still received ads and obviously stays in the memory.
Any Ideas?