Skip to content

Instantly share code, notes, and snippets.

@oxlb
Created October 16, 2019 07:01
Show Gist options
  • Save oxlb/a474595a95c1986c431992cfae0d2470 to your computer and use it in GitHub Desktop.
Save oxlb/a474595a95c1986c431992cfae0d2470 to your computer and use it in GitHub Desktop.
adType for the type of ads
enum adType: Int {
case banner
case interstitial
func getName() -> String {
switch self {
case .banner:
return adEvent.getName(.viewAdBanner)()
case .interstitial:
return adEvent.getName(.viewAdInt)()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment