Last active
March 28, 2017 23:02
-
-
Save flurrydev/986110ef3d8e7da3af24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (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