我想知道我添加声音&按钮功能上的图像或标签,单击按钮以编程方式创建。首先我的声音工作fy9,但在同一功能上添加图像和标签后,声音无效。
帮助我!
Anks .....
答案 0 :(得分:0)
试试这个,为我工作:
在视图控制器的.h文件中使用添加“ - (IBAction)playSound:(id)sender;”在“@end”之前
在视图控制器的.m文件中添加以下代码:
- (IBAction)playSound:(id)发件人{
NSString *path = [[NSBundle mainBundle] pathForResource:@"awh_man" ofType:@"wav"];
AVAudioPlayer* sound =[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
sound.delegate=self;
[sound play];
}
注意您需要将AVFoundation框架添加到项目中。 祝你好运。