美文网首页
IOS推送自定义声音

IOS推送自定义声音

作者: 冰天无幻 | 来源:发表于2018-11-08 14:26 被阅读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转过来。

    相关文章

      网友评论

          本文标题:IOS推送自定义声音

          本文链接:https://www.haomeiwen.com/subject/uwlwxqtx.html