Banner Ads
Banner Ads
Showing a Banner
val placementId = "12345"
Banner.show(placementId, activity)String placementId = "12345";
Banner.show(placementId, activity);let options = FYBBannerOptions(placementId: placementId)
FYBBanner.show(in: view, options: options)FYBBannerOptions *options = [[FYBBannerOptions alloc] initWithPlacementId:placementId];
[FYBBanner showBannerInView:view options:options];string placementId = "1234";
Banner.Show(placementId);Hiding the Banner
//hides the banner for a specific placement
val placementId = "12345"
Banner.hide(placementId)//hides the banner for a specific placement
String placementId = "12345";
Banner.hide(placementId);let placementId = "1234" FYBBanner.hide(placementId)NSString *placementId = @"1234"; [FYBBanner hide:placementId];string placementId = "1234";
Banner.Hide(placementId);Destroying the Banner
Banner Position
Loading a Banner
Adaptive Banners
Adding Callbacks
Last updated

