let save = UIApplication.shared.delegate as! AppDelegate
var price = " "
// config cell here
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "priceCell", for: indexPath) as! PriceTableViewCell
cell.priceTextField.text = numberFromKeyPad
price = cell.priceTextField.text!
return cell
}
здесь это сохраняет цену в coreData
@IBAction func saveButtonClicked(_ sender: UIButton) {
save.check.price = Int64 (price)!//here i have this error :Fatal error: Unexpectedly found nil while unwrapping an Optional val
PersistentService.saveContext()
print(NSHomeDirectory())
}
что это за ошибка в основных данных?