前提・実現したいこと
Swiftでtodoリストのアプリ開発をしています。
+ボタンをタップしたらtodoを入力します。OKボタンでTable View Cellに追加して表示するところまではできました。
そこに、todoにチェックマークをつけることと、UserDefaultを使用したデータ保存機能を実装しようとしています。
独自クラスMyToDoを作成し、viewDidRoadで保存しているtodoのデータを読み取るようにしました。
アプリ自体は起動するのですが、todoを保存することができず、アプリが落ちてしまいます。
発生している問題・エラーメッセージ
MyToDoList[28985:2219996] [User Defaults] Attempt to set a non-property-list object (
"<MyToDoList.MyToDo: 0x6000027f4080>"
) as an NSUserDefaults/CFPreferences value for key todoList
ソースコード
Swift
1import UIKit 2 3class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate { 4 5 var todoList = [MyToDo]() 6 // UITableViewに対して操作を行うため 7 @IBOutlet weak var tableView: UITableView! 8 9 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 10 return self.todoList.count 11 } 12 13 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 14 let cell = tableView.dequeueReusableCell(withIdentifier: "todoCell", for: indexPath) 15 let myTodo = todoList[indexPath.row] 16 cell.textLabel?.text = myTodo.todoTitle 17 if myTodo.todoDone { 18 cell.accessoryType = UITableViewCell.AccessoryType.checkmark 19 } else { 20 cell.accessoryType = UITableViewCell.AccessoryType.none 21 } 22 return cell 23 } 24 25 26 override func viewDidLoad() { 27 super.viewDidLoad() 28 29 let userDefaults = UserDefaults.standard 30 if let storedToDoList = userDefaults.object(forKey: "todoList") as? Data { 31 if let unarchiveToDoList = try! NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(storedToDoList) as? MyToDo { 32 todoList.append(unarchiveToDoList) 33 } 34 } 35 } 36 37 @IBAction func tapAddButton(_ sender: Any) { 38 // アラートダイアログを生成 39 let alertControllor = UIAlertController(title: "ToDo追加", message: "ToDoを追加してください", preferredStyle: UIAlertController.Style.alert) 40 // テキストエリアを追加 41 alertControllor.addTextField(configurationHandler: nil) 42 // OKボタンを生成 43 let okAction = UIAlertAction(title: "OK", style: UIAlertAction.Style.default) { (action: UIAlertAction) in 44 // OKボタンがタップされた時の処理 45 if let textField = alertControllor.textFields?.first { 46 // ToDoの配列に入力値を先頭に格納 47 let myTodo = MyToDo() 48 myTodo.todoTitle = textField.text! 49 self.todoList.insert(myTodo, at: 0) 50 51 // テーブルに行が追加されたことをテーブルに通知 52 self.tableView.insertRows(at: [IndexPath(row: 0, section: 0)], with: UITableView.RowAnimation.right) 53 54 // ToDoの保存処理 55 let userDefaults = UserDefaults.standard 56 userDefaults.set(self.todoList, forKey: "todoList") 57 userDefaults.synchronize() 58 } 59 } 60 // OKボタンを追加 61 alertControllor.addAction(okAction) 62 63 // CANSELボタンがタップされた時の処理 64 let cancelButton = UIAlertAction(title: "CANCEL", style: UIAlertAction.Style.cancel, handler: nil) 65 // CANSELボタンを追加 66 alertControllor.addAction(cancelButton) 67 68 // アラートダイアログを表示 69 present(alertControllor, animated: true, completion: nil) 70 } 71 72} 73 74 75class MyToDo: NSObject, NSCoding { 76 77 // ToDoのタイトル 78 var todoTitle: String? 79 // ToDoを完了したかを表すフラグ 80 var todoDone: Bool = false 81 override init(){ 82 83 } 84 85 // NSCodingプロトコルに宣言されているデシリアライズ処理 86 // decode 87 required init?(coder aDecoder: NSCoder) { 88 todoTitle = (aDecoder.decodeObject(forKey: "todoTitle") as? String)! 89 todoDone = aDecoder.decodeBool(forKey: "todoDone") 90 } 91 92 //encode 93 func encode(with aCoder: NSCoder) { 94 aCoder.encode(todoTitle, forKey: "todoTitle") 95 aCoder.encode(todoDone, forKey: "todoDone") 96 } 97}
回答1件
あなたの回答
tips
プレビュー