I am trying to update a label in a cell outside of
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
by using
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! Cell
in another function. However, I keep getting errors. Therefore, I tried to refer to the cell by using let cell = Cell(), but I get the error unexpectedly found nil. Lastly, I tried
let cell = tableView.dequeueReusableCellWithIdentifier("cell") as! Cell
that does not return an error, but the label cell.time.text is not updated.