我试图弄清楚如何在不使用IB的情况下连接按钮以编程方式播放声音。我有播放声音的代码,但是没有办法挂上按钮来播放声音?有什么帮助吗?

这是我正在使用的代码:

     - (void)playSound
    {
        NSString *path = [[NSBundle mainBundle] pathForResource:@"boing_1" ofType:@"wav"];
        AVAudioPlayer* myAudio = [[AVAudioPlayer alloc]
                 initWithContentsOfURL:[NSURL fileURLWithPath:path error:NULL]];
        myAudio.delegate = self;
        myAudio.volume = 2.0;
        myAudio.numberOfLoops = 1;
        [myAudio play];
    }

最佳答案

[button addTarget:self action:@selector(playSound) forControlEvents:UIControlEventTouchUpInside];

UIButton从UIControl继承其target / action方法。

关于iphone - 代码以使用iphone上的按钮以编程方式播放声音,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2626277/

10-13 03:43