Skip to content

Instantly share code, notes, and snippets.

@wvdk
Last active August 15, 2017 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wvdk/e3dd57620c53f338978e6d5d022d3672 to your computer and use it in GitHub Desktop.
Save wvdk/e3dd57620c53f338978e6d5d022d3672 to your computer and use it in GitHub Desktop.
if UIApplication.isRunningOnSimulator.swift { ... } else { ... }
//
// UIApplication+isRunningOnSimulator.swift
// MusicMind
//
// Created by Wesley Van der Klomp on 5/11/17.
// https://gist.github.com/wvdk/e3dd57620c53f338978e6d5d022d3672
// Thanks to http://stackoverflow.com/a/30284266/6407050
//
import Foundation
extension UIApplication {
static var isRunningOnSimulator: Bool {
return TARGET_OS_SIMULATOR != 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment