mi sono imbattuto nel seguente errore in questo codice:UITableViewCell Errore Xcode 7/Swift 2
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell: UITableViewCell? = tableView.dequeueReusableCellWithIdentifier("Cell") as? UITableViewCell
ERROR: '? UITableViewCell' Downcast da a 'UITableViewCell' solo riattiva gli optionals; volevi usare '!'?
Qualsiasi idea?
Modifica 'UITableViewCell?' A 'UITableViewCell!' – Kendel