I want to add many rows at the same time to my data storage in Parse and I know that the column name and the inserting value should be typed as String but I don't get why this doesn't work . Can some one help me :)
let myClass = PFObject(className: "Testing")
for (var i = 0 ; i <= 10 ; i++){
myClass["column \(i)"] = "\(i)"
}
myClass.saveInBackground()