所以var touser:PFObject及其值在后台,我如何更新touser数组的值?

例如touser.objectforkey("names")是用户输入ViewController时已查询的名称数组,如何使用该数组中的当前名称进行更新(其他名称可能已添加到该数组中,并且一个按钮显示了该值)数组。)。

最佳答案

希望我能正确理解您的问题。

您要更新PFObject中的名称吗?

var touser: PFObject
touser.objectForKey("names") as [String] //Assuming 'names' is [String]
let newNames = ["A", "B"]
touser.setObject(newNames, forKey: "names")
touser.saveEventually()

09-26 09:05