--
---
You received this message because you are subscribed to the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To post to this group, send email to google-admob-ads-sdk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-admob-ads-sdk/6478bb27-401e-4011-b68b-29f4fc7f5f94%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
@property (weak, nonatomic) IBOutlet GADAdChoicesView *adChoicesView;
self.containerView.nativeAd = (GADUnifiedNativeAd *)self.admobAd;
So I am setting nativeAd of my self.containerView at the end, and after the hook up of my adChoicesView is done
But nothing shows up inside the view and it's inactive!
Kindly tell me what I may be doing wrong.
Thanks.
Can you kindly let me know how to either move the original (automatically placed AdChoicesView) or how i can condition my RED AdChoicesView (that I can place at will) to show the required asset and be clickable?
Thank you very much.
You should be able to connect the GADAdChoicesView you created to your GADUnifiedNativeAd object by setting its adChoicesView property, as shown below:
However, kindly note that Native Ads must use the existing Native Ad Views (i.e. a GADUnifiedNativeAdView) to ensure that all functionalities and features work properly.
myUnifiedNativeAd.adChoicesView = _myAdChoicesView;
GADUnifiedNativeAdView *gadUnifiedNativeAdView = (GADUnifiedNativeAdView *)self.containerView;
GADAdChoicesView *gadAdChoicesView = self.adChoicesView;
gadUnifiedNativeAdView.adChoicesView = gadAdChoicesView;
self.containerView.nativeAd = (GADUnifiedNativeAd *)self.admobAd;

To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsubscrib...@googlegroups.com.
To post to this group, send email to google-admob-ads-sdk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-admob-ads-sdk/6478bb27-401e-4011-b68b-29f4fc7f5f94%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google Mobile Ads SDK Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/mMFpzTfadW0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-admob-ads-sdk/6d32f562-6112-436e-adaf-14fcc68985ab%40googlegroups.com.