Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户购买应用内购买时,我想隐藏 iAD 横幅,“从超级视图中删除”广告横幅视图是否足够或者我需要更多内容?
如果您使用removeFromSuperview,您还必须有一些代码在您删除广告时将内容放在那里,或者您可以已经有内容,当您删除广告时,它们会再次可见。
removeFromSuperview
我认为你应该在你的 viewDidLoad 中做这样的事情:
if(removeiAdsPurchased){ [iAd removeFromSuperview]; content.hidden = NO; }