todos.append(todo) 报错 xcode 提示报错信息 NSArray is not a subtype of TodeModel
报错原因是 var todo = [TodeModel (id: uuid, title: todoText.text, image: imgName, date: todoDate.date)] 系统判定为NSArry 类型不符合我们之前定义的 TodeModel
问题解决 我现在解决的方法是这样添加数据到数组里 如果大家有更好的方法 直接发上来 todos += [TodeModel (id: uuid, title: todoText.text, image: imgName, date: todoDate.date)]