Я пытаюсь удалить строку из моего источника данных и следующую строку кода:
if let tv = tableView {
вызывает следующую ошибку:
Инициализатор условной привязки должен иметь необязательный тип, а не UITableView
Вот полный код:
// Override to support editing the table view.
func tableView(tableView: UITableView, commitEditingStyle editingStyle:UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
if editingStyle == .Delete {
// Delete the row from the data source
if let tv = tableView {
myData.removeAtIndex(indexPath.row)
tv.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
Как мне исправить следующее?
if let tv = tableView {