make a button play sound without lag

后端 未结 1 615
一个人的身影
一个人的身影 2021-01-29 10:38

Im making a button play sound, like a button sound effect for example in jely car 3 when you press like a new game button it would have a sound effect like \"boop.\" I have done

相关标签:
1条回答
  • 2021-01-29 10:56

    Inside ViewDidLoad

    AVAudioPlayer *pp1 = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"bomb" ofType:@"wav"]] error:nil];
        self.playerBG = pp1;
        [pp1 prepareToPlay];
          [pp1 release];
    

    use the below code to play sound where you want

    [playerBG play];
    
    0 讨论(0)
提交回复
热议问题