我正在创建一个聊天应用程序并在新消息上发送推送通知-
-(void)methodName{
PFQuery *pushQuery = [PFInstallation query];
[pushQuery whereKey"user" containedInbjectIds];
PFPush *push = [[PFPush alloc] init];
push setQuery:pushQuery];
NSDictionary *pushData=@{
@"alert" : self.messageTxt.text,
@"Message" : self.messageTxt.text,
@"FirstGroup" : [GroupData valueForKey"GroupsOneId"],
@"SecondGroup" : [GroupData valueForKey"GroupsTwoId"],
@"GroupId" : groupObjectIdSend,
@"Type" : @"MutualMessage"
};
[push setData:pushData];
[push sendPushInBackground];
}
请帮助我为什么我每次都没有收到通知。
Best Answer-推荐答案 strong>
真实 APN 和测试 APN 中的服务器之间存在一些差异。
推送通知不可靠。这不是你的问题。
APNS 是基于 Apple 服务器,Apple 不对信息的成功传递做出任何保证。
关于Ios - 有时使用解析未收到推送通知,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/33146547/
|