let url = NSURL(string: "http://api.mdec.club:3500/news?")
let task = NSURLSession.sharedSession().dataTaskWithURL(url!) {
(data, response, error) in
self.jsonResult = try! NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.MutableContainers) as! NSMutableArray
self.tableView.reloadData()
}
task.resume()
I don't understand why I'm getting this error. I have to put the reloadData()
method inside task
because I have to wait till the get the data. How else can I reload the table view without getting this error?
You step out to the main thread in order to call
reloadData
, like this:Always do that any time you touch the interface from code that was called on a background thread. You must never never never never touch the interface except on the main thread.