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.
広告には 2 メディエーションを使用しています。
IAPを購入したら広告バナーを外したい。
現在removeFromSuperview、ビューを削除するために使用しています。ただし、広告はまだ更新中です。これ以上広告が表示されないようにするにはどうすればよいですか?
removeFromSuperview
また、GADBannerView を解放し、デリゲートを nil にする必要があります。したがって、次のようなことをすると:
adBanner_.delegate = nil; // Don't release if you're using ARC. [adBanner_ release];
もちろん、これは、アプリケーション フローの後半で GADBannerView を再度追加したくないことを前提としています。