使用Swift开发iOS8 App实战
第七章的7-13编写修改TODO,
@IBAction func Ok(sender: AnyObject) {
var image: String;
if childButton.selected {
image = "child-selected"
}else if phoneButton.selected {
image = "phone-selected"
}else if shoppingCartButton.selected {
image = "shopping-cart-selected"
}else{
image = "travel-selected"
}
if todo == nil{
let uuid = NSUUID().UUIDString
let todo = TodoModel(id: uuid, image: image, title: todoItem.text!, date: todoDate.date)
todos.append(todo)
}else{
// 为什么修改内容时,并没有将数据保存到todos数组而只是保存到了todo变量中,
// 而点击确定返回后,页面会更新为修改后的值呢?不理解!!!不理解!!!!!!!
todo?.image = image
todo?.title = todoItem.text!
todo?.date = todoDate.date
}
}
点击确定按钮后,会进行判断,如果todo为空,页面是新建页面,所以将新增项加入到todos数组,然后页面就可以更新了,但是如果不是点击新建进入的,那么页面就是详情页,就可以进行修改,但是只是将todo变量修改为当前页面值,并没有更改todos数组值,为什么页面也会更新成功啊??不明白
求大神解释下,谢谢!!!
heiheipingguo
相关分类