0
func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
dispatch_async(dispatch_get_main_queue()) { [unowned self] in
//call some method in cell to pass data and update labels/images on cell
}
}
我相信willDisplayCell總是在主線程上調用。那麼我通過使用dispatch_async(dispatch_get_main_queue())
達到了什麼目的。我是新來的迅速。請幫我理解這一點。提前致謝。使用dispatch_async在willDisplayCell中很有用
請說明您需要的信息 –
感謝您的關注。我不需要任何東西。試圖瞭解幾行代碼。 – Avi