I am trying to save a "Post Count" along with each user so I can keep track of the total amount of times they have posted. First, when I create a new column in the dashboard, it deletes the column once it refreshes. Also, I am curious on how to save it to Kinvey with Swift. Here is what I have thus far.
KCSUser.activeUser().setValue(num, forAttribute: "PostCount")
KCSUser.saveWithCompletionBlock(KCSUser.activeUser())
I realize I need a completion block, which is I think is between me and getting it to work. Thank you in advance!