PlayAtTime播放多个音频文件的问题

时间:2011-02-06 05:22:16

标签: objective-c ios audio file

所有 我有两个音频文件(caf),我希望我的音频播放器一个接一个播放。以下是我正在使用的代码

AVAudioPlayer *lSoundPlayer;
AVAudioPlayer *lSoundPlayer1;


NSTimeInterval timedelay = 2;

[lSoundPlayer play];
[lSoundPlayer1 playAtTime:timedelay];

当我编译时,我收到警告说AVaudio播放器可能没有响应。当我尝试执行时,我会遇到异常。有人可以帮忙吗

1 个答案:

答案 0 :(得分:0)

您正在向既未分配也未初始化的对象发送消息。

我建议您查看课程参考,并再次询问您是否还有其他问题:http://developer.apple.com/library/ios/#documentation/AVFoundation/Reference/AVAudioPlayerClassReference/Reference/Reference.html