我希望对ChangeArray进行排序,以便按从高到低的顺序显示股票,我已使用变量sortChange完成此操作,但BidArray和Stock Array与新数据不对应。我怎么能解决这个问题。谢谢。
var StockArray = [String]()
var BidArray = [Double]()
var ChangeArray = [Double]()
@IBOutlet weak var tableView: UITableView!
// @IBOutlet weak var StockSymbolLbl: UILabel!
// @IBOutlet weak var BidSymbolLbl: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
getJSON()
automaticallyAdjustsScrollViewInsets = false
tableView.dataSource = self
tableView.delegate = self
tableView.registerNib(UINib(nibName: "StockHome", bundle: NSBundle.mainBundle()),forCellReuseIdentifier: "stockHome")
tableView.rowHeight = 60
// StockSymbolLbl.text = ""
// BidSymbolLbl.text = ""
}
func getJSON(){
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)) {
let url = NSURL(string: self.stockURL)
let request = NSURLRequest(URL: url!)
let session = NSURLSession(configuration: NSURLSessionConfiguration.defaultSessionConfiguration())
let task = session.dataTaskWithRequest(request) { (data, response, error) -> Void in
if error == nil {
let swiftyJSON = JSON(data: data!)
let Symbol: String? = swiftyJSON["query"]["results"]["quote"][0]["symbol"].stringValue
let bid: String? = swiftyJSON["query"]["results"]["quote"][0]["Bid"].stringValue
let change: String? = swiftyJSON["query"]["results"]["quote"][0]["Change"].stringValue
print(change!)
print(Symbol!)
print(bid!)
dispatch_async(dispatch_get_main_queue()) {
// self.StockSymbolLbl.text? = "\(Symbol!)"
// self.BidSymbolLbl.text? = "\(bid!)"
self.NumberofRows = swiftyJSON["query"]["results"]["quote"].count
for i in 0...self.NumberofRows {
var stockcount = 0
stockcount += i
let Stock = swiftyJSON["query"]["results"]["quote"][stockcount]["symbol"].stringValue
let Bid = swiftyJSON["query"]["results"]["quote"][stockcount]["Bid"].doubleValue
let Change = swiftyJSON["query"]["results"]["quote"][stockcount]["Change"].doubleValue
self.StockArray.append(Stock)
print(Stock)
self.BidArray.append(Bid)
print(Bid)
self.ChangeArray.append(Change)
print(Change)
}
self.tableView.reloadData()
}
}else{
print("There was an error")
}
}
task.resume()
}
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return NumberofRows
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: StockHome = tableView.dequeueReusableCellWithIdentifier("stockHome", forIndexPath: indexPath) as! StockHome
if StockArray.count != 0{
let sortChange = ChangeArray.sort(>)
cell.symbolLbl?.text = StockArray[indexPath.row]
let bid = BidArray[indexPath.item]
let changeRate = ChangeArray[indexPath.row]
cell.bidLbl?.text = "\(bid)" + " USD "
cell.changeLbl?.text = "\(changeRate)" + " %"
}
print(self.StockArray)
return cell
}
func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
switch ChangeArray[indexPath.row] {
case let x where x < 0.0:
cell.backgroundColor = UIColor(red: 255.0/255.0, green: 59.0/255.0, blue: 48.0/255.0, alpha: 1.0)
case let x where x > 0.0:
cell.backgroundColor = UIColor(red: 76.0/255.0, green: 217.0/255.0, blue: 100.0/255.0, alpha: 1.0)
case let x:
cell.backgroundColor = UIColor(red: 44.0/255.0, green: 186.0/255.0, blue: 231.0/255.0, alpha: 1.0)
}
cell.textLabel!.textColor = UIColor.whiteColor()
}
}
答案 0 :(得分:0)
现在你的三个阵列是独立的,因此不保证顺序相同。
我要做的是使用三个值创建struct并将其附加到1个可以排序的单个数组。
struct Stock {
var symbol: String = ""
var bid: Double = 0.0
var change: Double = 0.0
}
现在你可以像这样重写getJSON()中的for循环:
for i in 0..<self.NumberofRows {
let symbol = swiftyJSON["query"]["results"]["quote"][i]["symbol"].stringValue
let bid = swiftyJSON["query"]["results"]["quote"][i]["Bid"].doubleValue
let change = swiftyJSON["query"]["results"]["quote"][i]["Change"].doubleValue
let stock = Stock(symbol: symbol, bid: bid, change: change)
stockArray.append(stock)
}
现在你应该能够用这个来排序'StockArray':
stockArray = stockArray.sort({
return $0.change > $1.change
})
稍微偏离主题:一些提示
尝试使变量名的第一个字符不大写,Classes / Enums / Structs的第一个字符大写。同一个变量名中的每个新单词都应该大写。
其次,尝试将for循环重写为for-each循环。 some documentation。这更加清晰,不再需要NumberofRows
。由于现在所有内容都在1个数组中,因此您可以在stockArray.count
numberOfRowsInSection
您可以在调用tableView.reloadData()
之前进行排序,这样它只会排序一次,而不是每次加载一个单元格。
最后,在使用可能会改变的JSON时尝试使用if let
,这样你就可以确定你所处理的Double实际上是Double。 Some documentation