我在团结iOS游戏中集成了Parse Push通知。在安装类的数据被意外删除之前一直工作正常。 现在即使重新安装游戏,也没有任何设备被注册。我帮助了我,因为我被困了几天。
我的另一个问题是,如何更新默认安装类以添加/编辑我自己的自定义数据字段?
我的游戏不是直播。我正在使用测试模式。
答案 0 :(得分:0)
通常这应该有用
PFInstallation *currentInstallation = [PFInstallation currentInstallation];
[currentInstallation setDeviceTokenFromData:deviceToken];
currentInstallation.channels = @[ @"Feed" ];
[currentInstallation saveInBackground];
请确保“didRegisterForRemoteNotificationsWithDeviceToken”正在调用,并且您的设备令牌不为空。
您可以添加您选择的列ex:用户的指针对象等...