Skip to content

Instantly share code, notes, and snippets.

@flurrydev
Last active March 28, 2017 23:02
Show Gist options
  • Save flurrydev/986110ef3d8e7da3af24 to your computer and use it in GitHub Desktop.
Save flurrydev/986110ef3d8e7da3af24 to your computer and use it in GitHub Desktop.
- (void) adNativeDidFetchAd:(FlurryAdNative *)nativeAd
{
NSLog(@"Native Ad for Space [%@] Received Ad with [%lu] assets", nativeAd.space, (unsigned long)nativeAd.assetList.count);
//remove the previously tracked ad
[self.nativeAd removeTrackingView];
self.nativeAd = nativeAd;
//set the tracking view for this ad instance
self.nativeAd.trackingView = self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment