ios - How do I hide iAd bannerView -


i provide in-app purchase unlock features includes hiding iad bannerview.

i currenlty have bannerview set property, when try set view hidden, doesnt disappear.

i've tried [bannerview removefromsuperview] , it's still visible. i've tried moving off screen changing it's x,y coords.

the view's place holder in xib , confirmed it's wired property iboutlet *bannerview.

does bannerview not behave normal views? sort of thing not allowed?

if(isfullversion) {     removeadsbutton.hidden = yes;     bannerview.hidden = yes;  // doesnt work     [bannerview removefromsuperview]; // doesnt work } 


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -