我正在尝试在我的应用程序上创建推送通知,并在应用程序 didReceiceRemoteNotification 函数上使用此脚本粘贴:
NSDictionary *data = [NSDictionary dictionaryWithObjectsAndKeys:
messageContent, @"alert",
@"Increment", @"badge",
nil];
PFPush *push = [[PFPush alloc] init];
[push setChannel:chatRoomName];
[push setData:data];
[push sendPushInBackground];
但是,我只能显示推送消息,我的应用程序右上角没有显示徽章编号.. 是什么导致了问题?