i dont know why is it happening but i cant save ay Int Value in Tables instead date , string booleans are working fine , my code:
my objectClass contains an entity named ‘total’ which is of int?
type this is how i’m saving the object
selectedTagTotalReview.append(review)
let tag = Tags()
tag.objectId = id
tag.total_reviews = selectedTagTotalReview
tag.total = (selectedTagTotalReview.count) // problem occurring right here i tried with static numbers too but still my table's column is empty
tag.detail = selectedTagDetail
tag.name = selectedTag
tag.image_url = selectedTagImageUrl
dataStore!.save(
tag,
response: { (result: AnyObject!) -> Void in
self.dismissCommentView()
},
error: { (fault: Fault!) -> Void in
print("Server reported an error (2): \(fault)")
})
in backendless my table’s entity type is of INT