0
我有填充表格的這些字段的tableview。 locTextArray包含以英尺爲單位的距離。從最低到最高排序tableview單元格
我將如何從最小量的單元格到最多的單元格進行排序?
我想我可以對數組進行排序,但這會與所有其他數組不匹配。
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cell : MainViewCell! = tableView.dequeueReusableCellWithIdentifier("MainCell") as! MainViewCell
cell.cellTitle.text = nameArray[indexPath.row] //title
cell.cellText.text = textArray[indexPath.row] // text
let formatter = NSNumberFormatter()
formatter.numberStyle = .CurrencyStyle
cell.userCount.text = formatter.stringFromNumber(Double(priceArray [indexPath.row])!) //price
cell.cellDate.text = timeArray[indexPath.row] //time
cell.cellAddress.text = locTextArray [indexPath.row] //distance in feet
return cell as MainViewCell
}
你爲什麼有這麼多的陣列?你應該有一個模型對象的數組... – Wain