简体   繁体   中英

How to remove Flurry ad banner from view

I am using Flurry in my iOS app, to display banner ads as follows:

self.flurryBanner = [[FlurryAdBanner alloc] initWithSpace:@"FlurryBanner"];
self.flurryBanner.adDelegate = self;

[self.flurryBanner fetchAdForFrame:self.view.frame];

while I can find documentation in AdMob to hide banner (setHidden = YES), I could not find any information on how to do so. Any ideas for a good practice?

You can do it like this

UIView *flurryContainer = [[UIView alloc] initWithFrame:CGRectMake(0, 150, self.view.frame.size.width, 50)];

[self.view addSubview:flurryContainer];

[self.flurryBanner displayAdInView:flurryContainer viewControllerForPresentation:self];

And then flurryContainer.hidden = YES;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM