大家好,我一直在尝试创建音板一段时间,我发现这个网站有没有人可以通过为 iPhone Xcode 4.2 提供完整的工作代码来回答这个问题,谢谢你的时间。
这是我的代码,但它有错误
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
-(IBAction)sound1 {
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef soundFileURLRef;
soundFileURLRef = CFBundleCopyResourceURL(mainBundle, (CFStringRef) @"sound1", CFSTR ("wav"), NULL);
UInt32 soundID;
AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID);
AudioServicesPlaySystemSound(soundID);
}
加上有人说要使用 av 东西请编辑或上传代码回答时我是初学者哈哈