I am using Parse as my backend for one of my native iOS app. I am not able to update a record on a table in Parse. First I query the object that I want to update it. So, \"o
I fixed this problem by changing the ACL string on the parse objects I want to be able to modify to the following and it fixed my problem:
{"*":{"read":true,"write":true}}
Hope that helps.