推送通知的另一种声音

时间:2011-01-24 11:12:40

标签: iphone json

我正在尝试使用除默认声音(三音)之外的其他声音向自己发送远程通知。 但当我添加“声音”:“编钟”时,我没有收到另一种声音?

有人可以帮我把喇叭作为通知声音吗?

提前致谢

1 个答案:

答案 0 :(得分:0)

我认为这不是一个大问题。您只需要下载一个包含您喜欢的声音的wave文件,并将其添加到资源文件夹中并相应地进行编码。

- (id)init 
{
    self = [super init];
    if(self != nil) 
    {
        self.deviceToken1 = @"your token key";
        self.payload = @"{\"aps\":{\"alert\":\"You got a new message!\",\"badge\":5,\"sound\":\"beep.wav\"},\"acme1\":\"bar\",\"acme2\":42}";
        //  self.payload = @"{\"aps\":{\"alert\":\"This is some fany message.\",\"badge\":1}}";
        self.certificate = [[NSBundle mainBundle] pathForResource:@"certi_identity(2)" ofType:@"cer"];
    }
    return self;
}