我正在尝试向用户发送推送通知,当我创建的提交类中的数据在状态列中发生更改但在XCode中继续出现错误时,请使用putQuery = PFsubmission.query()& #34;我已经"使用未解析的标识符和PF提交'。"
//install push function
func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {
let installation = PFInstallation.currentInstallation()
installation.addUniqueObject("Status", forKey: "channels")
installation.setDeviceTokenFromData(deviceToken)
installation.saveInBackground()
let pushQuery = PFsubmission.query()
pushQuery.whereKey("status", equalTo: "1")
// Send push notification to query
let push = PFPush()
push.setQuery(pushQuery) // Set our Installation query
push.setMessage("Test One Message Here")
push.sendPushInBackground()
答案 0 :(得分:0)
我没有使用这个框架,但我不禁注意到Parse框架类名遵循这个模式:
PFClass // not PFclass
即。在PF
之后使用大写的类名。你应该尝试使用
PFSubmission // not PFsubmission
看看是否有效。