0

我正在开发 TODO 应用程序,它已全部完成并且运行良好,但突然开始出现错误“致命错误:在展开可选值时意外发现 nil”。需要一些指南!

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate{


@IBOutlet weak var tableView: UITableView!

var tasks : [Task] = [ ]
override func viewDidLoad() {
    super.viewDidLoad()
    tableView.dataSource = self
    tableView.delegate = self
    // Do any additional setup after loading the view, typically from a nib.
}

override func viewWillAppear(_ animated: Bool) {
    getdata()

    tableView.reloadData() 
}


func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return tasks.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = UITableViewCell()

    let task  = tasks[indexPath.row]

    if task.isimportant{
        cell.textLabel?.text = " ★   \(task.name!)"

    }else{
        cell.textLabel?.text = task.name!
    }

    return cell
}

func getdata() {
    let context =  (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext

    do{
    tasks = try  context.fetch(Task.fetchRequest())
    }
    catch {
        print ("Failed!")
    }
}

}

4

1 回答 1

1

您应该始终避免使用 an 来解开可选项,!因为如果缺少可选项,可能会遇到运行时错误。尝试以下操作:

let taskName = task.name ?? "No name"
if task.isimportant{
    cell.textLabel?.text = " ★   \(taskName)"
}else{
    cell.textLabel?.text = taskName
}
于 2016-11-10T13:15:41.297 回答