Skip to content

Instantly share code, notes, and snippets.

@amirrajan
Created February 19, 2017 23:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amirrajan/706dafe5ce196f966ad04bf9bb06e764 to your computer and use it in GitHub Desktop.
Save amirrajan/706dafe5ce196f966ad04bf9bb06e764 to your computer and use it in GitHub Desktop.
Play sound on a separate thread
def play_forward_sound_thread
NSThread.detachNewThreadSelector :play_forward_sound, toTarget: self, withObject: nil
end
def play_forward_sound context = nil
#play sound code here
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment