IOS推送自定义声音
2018-11-08 本文已影响68人
冰天无幻
- (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转过来。