- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {
[self playSound];
}
-(void)playSound{
NSString *path = [[NSBundle mainBundle] pathForResource:@"xxxxxx" ofType:@"caf"];
if(path) {
//注册声音到系统
AudioServicesCreateSystemSoundID((__bridge CFURLRef _Nonnull)[NSURL fileURLWithPath:path],&shake_sound_male_id);
}
}
xxxxxx.caf 是保存到工程的一个音乐格式 ,由mp3转过来。
网友评论