TableViewCellに保存したデータをスワイプで削除し、その状態を保存したいです。
削除まではできるのですが、保存できない状態です。
下記を参考に、試してみました。
https://teratail.com/questions/202676
コードを挿入しましたが削除しても反映されずでした。
Realmで保存→スワイプで削除→UserDefaultsで保存
という解釈であっていますでしょうか。
もしくは別の方法で保存する必要があるのでしょうか。
アドバイスをいただけますと幸いです。
よろしくお願い致します。
コードはこちらです。
CalendarViewControllerswift
1import UIKit 2import FSCalendar 3import Realm 4import RealmSwift 5import CalculateCalendarLogic 6 7class CalendarViewController: UIViewController,FSCalendarDelegateAppearance { 8 9 var diaryArray: [Diary] = [] 10 11 12 13 14 @IBOutlet weak var calendar: FSCalendar! 15 @IBOutlet weak var diaryTitleTableView: UITableView! 16 17 override func viewDidLoad() { 18 super.viewDidLoad() 19 20 calendar.delegate = self 21 calendar.dataSource = self 22 23 configureTableView() 24 25 diaryArray = Diary.search(date: Date()) 26 27 28 } 29 30 31 32 override func didReceiveMemoryWarning() { 33 super.didReceiveMemoryWarning() 34 // Dispose of any resources that can be recreated. 35 } 36 37 fileprivate let gregorian: Calendar = Calendar(identifier: .gregorian) 38 fileprivate lazy var dateFormatter: DateFormatter = { 39 let formatter = DateFormatter() 40 formatter.dateFormat = "yyyy-MM-dd" 41 return formatter 42 }() 43 44 // 祝日判定を行い結果を返すメソッド(True:祝日) 45 func judgeHoliday(_ date : Date) -> Bool { 46 //祝日判定用のカレンダークラスのインスタンス 47 let tmpCalendar = Calendar(identifier: .gregorian) 48 49 // 祝日判定を行う日にちの年、月、日を取得 50 let year = tmpCalendar.component(.year, from: date) 51 let month = tmpCalendar.component(.month, from: date) 52 let day = tmpCalendar.component(.day, from: date) 53 54 // CalculateCalendarLogic():祝日判定のインスタンスの生成 55 let holiday = CalculateCalendarLogic() 56 57 return holiday.judgeJapaneseHoliday(year: year, month: month, day: day) 58 } 59 // date型 -> 年月日をIntで取得 60 func getDay(_ date:Date) -> (Int,Int,Int){ 61 let tmpCalendar = Calendar(identifier: .gregorian) 62 let year = tmpCalendar.component(.year, from: date) 63 let month = tmpCalendar.component(.month, from: date) 64 let day = tmpCalendar.component(.day, from: date) 65 return (year,month,day) 66 } 67 68 //曜日判定(日曜日:1 〜 土曜日:7) 69 func getWeekIdx(_ date: Date) -> Int{ 70 let tmpCalendar = Calendar(identifier: .gregorian) 71 return tmpCalendar.component(.weekday, from: date) 72 } 73 74 // 土日や祝日の日の文字色を変える 75 func calendar(_ calendar: FSCalendar, appearance: FSCalendarAppearance, titleDefaultColorFor date: Date) -> UIColor? { 76 //祝日判定をする(祝日は赤色で表示する) 77 if self.judgeHoliday(date){ 78 return UIColor.red 79 } 80 81 //土日の判定を行う(土曜日は青色、日曜日は赤色で表示する) 82 let weekday = self.getWeekIdx(date) 83 if weekday == 1 { //日曜日 84 return UIColor.red 85 } 86 else if weekday == 7 { //土曜日 87 return UIColor.blue 88 } 89 90 return nil 91 92 } 93 94 override func viewWillAppear(_ animated: Bool) { 95 diaryArray = Diary.search(date: Date()) 96 diaryTitleTableView.reloadData() 97 } 98 99 100 override func prepare(for segue: UIStoryboardSegue, sender: Any?) { 101 if segue.identifier == "toDetail" { 102 let detailDiaryViewController = segue.destination as! DetailDairyViewController 103 let selectedIndex = diaryTitleTableView.indexPathForSelectedRow! 104 detailDiaryViewController.selectedDiary = diaryArray[selectedIndex.row] 105 } 106 } 107 108 // Private 109 func configureTableView() { 110 //dataSourceとdelegateメソッドが使えるように。 111 diaryTitleTableView.delegate = self 112 diaryTitleTableView.dataSource = self 113 114 //セルの高さを30.0で固定 115 diaryTitleTableView.rowHeight = 30.0 116 117 //余白を消す 118 diaryTitleTableView.tableFooterView = UIView() 119 } 120 121 122 } 123 124 extension CalendarViewController: UITableViewDelegate, UITableViewDataSource { 125 126 127 128 129 // MARK: - TableView DataSource 130 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 131 132 return diaryArray.count 133 } 134 135 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 136 let cell = tableView.dequeueReusableCell(withIdentifier: "DiaryCell")! 137 138 cell.textLabel?.text = diaryArray[indexPath.row].title 139 140 return cell 141 142 143 } 144 145 // MARK: - TableView Delegate 146 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 147 tableView.deselectRow(at: indexPath, animated: true) 148 149 } 150 //スワイプしてセルを削除 151 func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) { 152 if editingStyle == UITableViewCell.EditingStyle.delete { 153 154 //itemArray.remove(at: indexPath.row) 155 diaryArray.remove(at: indexPath.row) 156 157 // 更新されたので保存 158 UserDefaults.standard.set(diaryArray, forKey: "DiaryCell" ) 159 160 161 tableView.deleteRows(at: [indexPath as IndexPath], with: UITableView.RowAnimation.automatic) 162 } 163 } 164 165 166} 167 168 extension CalendarViewController: FSCalendarDataSource, FSCalendarDelegate { 169 // MARK: - FSCalendar Delegate 170 func calendar(_ calendar: FSCalendar, didSelect date: Date, at monthPosition: FSCalendarMonthPosition) { 171 //日付選択時に呼ばれるメソッド 172 diaryArray = Diary.search(date: date) 173 diaryTitleTableView.reloadData() 174 175 } 176 177} 178 179 180
Diaryswift
1import UIKit 2import Realm 3import RealmSwift 4 5class Diary: Object { 6 7 static let realm = try! Realm() 8 9 10 //Diaryのプロパティを定義 11 @objc dynamic private var id = 0 12 @objc dynamic var date: String = "" 13 @objc dynamic var title: String = "" 14 @objc dynamic var note: String = "" 15 16 //キーの設定 17 static var primaryKey: String? { 18 return "id" 19 } 20 21 //新規作成 22 static func create() -> Diary { 23 let diary = Diary() 24 diary.id = lastId() 25 return diary 26 } 27 28 //日付指定で読み込み 29 static func search(date: Date) -> [Diary] { 30 let selectedDay = Diary.changeDateType(date: date) 31 let config = Realm.Configuration(schemaVersion: 1, migrationBlock: { migration, oldSchemaVersion in 32 if (oldSchemaVersion < 1) { 33 } 34 }) 35 Realm.Configuration.defaultConfiguration = config 36 if realm.objects(Diary.self).filter("date == '(selectedDay)'").isEmpty == false { 37 let objects = realm.objects(Diary.self).filter("date == '(selectedDay)'") 38 var diaryArray: [Diary] = [] 39 for object in objects { 40 diaryArray.append(object) 41 } 42 return diaryArray 43 } else { 44 return [] 45 } 46 47 } 48 49 //Idの設定 50 static func lastId() -> Int { 51 if let object = realm.objects(Diary.self).last { 52 return object.id + 1 53 } else { 54 return 1 55 } 56 } 57 58 //保存 59 func save() { 60 try! Diary.realm.write { 61 Diary.realm.add(self) 62 } 63 } 64 65 //日付のフォーマット指定 66 static func changeDateType(date: Date) -> String { 67 let dateFormatter = DateFormatter() 68 dateFormatter.dateFormat = "MM月dd日" 69 let text = dateFormatter.string(from: date) 70 return text 71 } 72 73 74 75} 76 77 78
3つ質問がありますので、ご回答いただき、また必要に応じてご質問本文に追記していただければと思います。
1. Realm でデータベースを作り、それでデータの登録・削除を行なっているのですが、削除データを UserDefaults で保存する理由はどのような理由があるのでしょうか。普通に Realm のデータを削除すれば良いように思えます。
2. Realm のデータを削除するとして、class Diary には削除用のメソッドがないようですが、これはまだ実装されていないのでしょうか。
3. もし、class Diary ほかを作成するにあたって参考にされた書籍・記事などがあれば、その情報を教えていただけないでしょうか(特にclass Diary については、なぜこのような構造になっているのか腑に落ちないところもあるので)。
お返事ありがとうございます。
質問にお答えさせて頂きます。
①こちらのサイトを参考に保存を行おうと試みましたがエラーが解決できず
UserDefaultsで保存したほうが良いかと思った為です。
https://swift.hiros-dot.net/?p=645#toc11
②メソッドは未実装です。
③こちらの記事を参考にしました。
https://qiita.com/atsushi_takao/items/a824e9cc4e97cafb470f
恐れ入りますが、ご確認よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー