Guest User

Untitled

a guest
Jul 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. NSURL *newURL = [[NSURL alloc] initFileURLWithPath:soundFilePath];
  2. NSError *error;
  3.  
  4. AVAudioPlayer *myAudio1 = [[AVAudioPlayer alloc]initWithContentsOfURL:newURL error:&error];
  5. myAudio1.delegate = self;
  6. [myAudio1 play];
Add Comment
Please, Sign In to add comment