Multiple
Prerequisites
Always test with test ads
63a573c07144fImplementation
Load an ad
func loadCustomAd() {
Adx3CustomAdManager().loadCustomAd(withPlacementID: "Your Placement ID", userId: "") { adCount in
} error: { error in
}
}- (void)loadCustomAd {
[[Adx3CustomAdManager manager] loadCustomAdWithPlacementID:CUSTOM_ID userId:@"" success:^(NSInteger adCount) {
} error:^(NSError * _Nonnull error) {
}];
}Create a Adx3CustomAdView
Display the ad
Last updated