微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ios – SWIFT:更新现有核心数据对象

我一直在创建一个项目,只是为了帮助我自己学习核心数据,但是我来到了每个项目的一部分,我根本无法解决这个问题,这里是 – 我正在尝试创建一个UIAlert窗口,调用我写的更新名称函数,用户可以输入新名称并点击更新,看起来很容易,而且我有我需要的代码,减去一小块.

我将发布我的代码,但我得到的错误是“无法将类型’String’的值转换为预期的参数类型’NameObject’”,我明白,我的NameObject类是NSManagedobject类型,我只是不确定在哪里我错了或做了什么.

class NameObject: NSManagedobject {
static let entityName = "Person"
@NSManaged var name: String?}`class NameObject: NSManagedobject {
static let entityName = "Person"
@NSManaged var name: String? }

这是我的更新功能

func updateName(index: Int,newName: NameObject){
    //1
    let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
    // 2
    peoples[index].name = newName.name
    appDelegate.saveContext()

}

据我所知,它完全正常.

这是我的UIAlert代码,

@IBAction func updateNameButton(sender: AnyObject,indexPath: NSIndexPath) {
        //customCell().updateNameAlert()

    func updateNameAlert(){
        let alert = UIAlertController(title: "Update",message: "Please enter the new name.",preferredStyle: .Alert)
        // 1
        let updateAction = UIAlertAction(title: "Save",style: .Default){(_) in
                                            let nameTextField = alert.textFields![0]

这是我遇到问题的地方:

self.updateName(indexPath.row,newName:(nameTextField.text!)) //Issue
            self.tableView.reloadData()
        }

        // 2
        let cancelAction = UIAlertAction(title: "Cancel",style: .Cancel,handler: nil)

        alert.addTextFieldWithConfigurationHandler(nil)
        alert.addAction(updateAction)
        alert.addAction(cancelAction)

        // 3
        self.presentViewController(alert,animated: true,completion: nil)
    }
}

如果需要任何进一步的信息,请告诉我;如果它有帮助我很乐意提供它.

解决方法

只需更改签名即可为参数newName获取字符串,
这就是错误信息所说的内容.

func updateName(index: Int,newName: String){
   let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
   peoples[index].name = newName
   appDelegate.saveContext()

}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐