Skip to content

Instantly share code, notes, and snippets.

@ydn
Created June 9, 2015 20:32
Show Gist options
  • Save ydn/e639cee812da735ba1ee to your computer and use it in GitHub Desktop.
Save ydn/e639cee812da735ba1ee to your computer and use it in GitHub Desktop.
Flurry Banner Ads with Swift
// ViewController.swift
class ViewController: UIViewController, FlurryAdBannerDelegate {
// Initialize Ad Banner Object
let adBanner = FlurryAdBanner(space:"ADSPACE");
override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated);
adBanner.adDelegate = self;
adBanner.fetchAndDisplayAdInView(self.view, viewControllerForPresentation: self);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment