Skip to content

Instantly share code, notes, and snippets.

@bri-bri
Created March 10, 2013 18:23
Show Gist options
  • Save bri-bri/5129753 to your computer and use it in GitHub Desktop.
Save bri-bri/5129753 to your computer and use it in GitHub Desktop.
Firing an ad every 30 seconds!
- (void)didFailToLoadInterstitial:(NSString *)location {
NSLog(@"failure to load interstitial at location %@", location);
[[Chartboost sharedChartboost] cacheInterstitial];
[NSTimer scheduledTimerWithTimeInterval:30
target:[Chartboost sharedChartboost]
selector:@selector(showInterstitial)
userInfo:nil
repeats:NO];
}
- (void)didDismissInterstitial:(NSString *)location {
NSLog(@"dismissed interstitial at location %@", location);
[[Chartboost sharedChartboost] cacheInterstitial];
[NSTimer scheduledTimerWithTimeInterval:30
target:[Chartboost sharedChartboost]
selector:@selector(showInterstitial)
userInfo:nil
repeats:NO];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment