新安装未出现在数据资源管理器中 - Parse.com

时间:2015-11-04 10:37:19

标签: ios parse-platform

我在Parse Data Explorer中删除了我的安装类,并创建了一个新的安装类。现在它是空的,没有新的安装出现在课堂上。是什么导致了这种行为,我该如何解决它。在安装出现之前,Parse是否实现了在iOS SDK中调用的某种功能?

任何帮助表示赞赏! :)

2 个答案:

答案 0 :(得分:0)

如果从“安装”表中删除记录,则打开应用程序时不会再次显示记录。这个简单的解决方法是从您的设备中删除应用程序并重新安装它,以便设备安装记录再次出现在您的班级中。这可能是因为当您注册安装时,它会在您的设备上由Parse SDK在本地缓存,并且不会再次更新。

答案 1 :(得分:0)

我试图再次从Parse做推送指南,看起来他们改变了SDK中的一些东西,这导致了问题!

func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {


    PFPush.storeDeviceToken(deviceToken)

    let currentInstallation = PFInstallation.currentInstallation()
    currentInstallation.setDeviceTokenFromData(deviceToken)
    currentInstallation.channels = ["global"]
    currentInstallation["notifyEnabled"] = true
    currentInstallation.saveInBackground() //This line was not there initially!



}

我通过插入代码中突出显示的行来修复它。

感谢您的帮助! :)