swift新增接收不到值
点击编辑没有添加成功 进行了调试 由于只是初学不懂是什么意思
uuid 和todo是否没取到值
如果没有 那需要怎么修改
var image = ""
if "" == image {
image = "selected-child"
}
if todo == nil {
let uuid = NSUUID().UUIDString
let todo = TodoModel(id: uuid, image: image, title: todoItem.text!, date: todoDate.date)
todos.append(todo)
}
else {
todo?.image = image
todo?.title = todoItem.text!
todo?.date = todoDate.date
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1、ViewController.swift中
修改下面所有的 todos 为 ViewController.todos
2、DetailViewController.swift 中
(你需要在storyboard中control拖拽确定到 这个VC的exit上面,最上面一排最右边一个)
修改todos 为 ViewController.todos
3、添加功能正常了。
4、关于修改功能,选中liestview项编辑,需要在DetaiViewController中使用segue查看传入的todos数组的索引号,然后修改todos,这部分我没有做。
Github上已经提交。