Parse, how to count, put data in an array, then show the content of the array
问题 I need to check for, and then show, the number of objects in a Parse class in a fixed tableView, each object has a "guide" keyword, and each row of the tableView is named after those keywords. problem: Can't add data to the array my idea is to search for them, put result in an array: var totalOfTotalArray : [Int] = [] and then, in order to show numbers one by one, each row will have: switch indexPath.row { cell.guideNumberOfMexLabel.text = String(self.totalOfTotalArray[indexPath.row]) } this