xcode - Updating objects on parse - [Error] object not found -


i trying update object on parse, error message: [error]: object not found update (code: 101)

let query = pfquery(classname: "answers")     query.findobjectsinbackgroundwithblock { (objects, error) -> void in         if let objects = objects {             object in objects {                     object["upvoters"] = ["one","two"]                     object.saveinbackground()             }         }     } 

what causing this, , how fix it?

the cause of issue acl settings of object trying edit. trying edit object wasn't created me, , acl did not have public write access true. see parse acl


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -