我有一些包含一些单元格的桌面视图,每个单元格都会从互联网上获取数据。 我的tableviewcell函数是这样的:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell = tableView.dequeueReusableCellWithIdentifier("placeCell", forIndexPath: indexPath) as! WeatherTableViewCell
......
//Create Url here...
......
let downloadTask: NSURLSessionDownloadTask = sharedSession.downloadTaskWithURL(url!, completionHandler: { (location: NSURL!, response: NSURLResponse!, error: NSError!) -> Void in
if error == nil {
let dataObject = NSData(contentsOfURL: location)
// println("dataObject:\(dataObject)")
.........
// Got data text here
.........
println("dataText: \(self.dataText)")
}
cell.label.text = "\(self.dataText)"
})
downloadTask.resume()
return cell
}
EveryThing工作正常,我可以获得每个单元格的所有数据,但单元格的标签不会更新dataText。 当我获得每个单元格的数据时,我希望单元格更新dataText。我怎么能这样做?
答案 0 :(得分:4)
您必须在主线程中更新您的UI 替换这个:
cell.label.text = "\(self.dataText)"
有了这个:
dispatch_async(dispatch_get_main_queue()) {
cell.label.text = "\(self.dataText)"
}
答案 1 :(得分:0)
请试试这个。
var indexPath = NSIndexPath(forRow: 0, inSection: 0)
self.tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.none)
答案 2 :(得分:0)
您也可以使用以下代码来实现您的要求
// on main thread
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// do your background code here
// schedule data download here
dispatch_sync(dispatch_get_main_queue(), ^{
// on main thread
// assign the text to label here
// also be sure to assign the text to label of current index path cell
});
});
[1]: http://stackoverflow.com/questions/30343678/how-can-i-reload-data-in-uitableviewcell-after-i-download-data-for-each-cell-fro?answertab=oldest#tab-top