質問編集履歴
2
書式の改善
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
エラー:Extra trailing closure passed in callの解決法が分かりません…
|
1
|
+
【SwiftUI】エラー:Extra trailing closure passed in callの解決法が分かりません…
|
test
CHANGED
File without changes
|
1
ScrumStore.swiftのソースコード追加、もとにした教材の情報の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
カレンダーで選択した日付をday(Date型)として読み取り、その日付と今日の日付との差を自動的に計算し表示するシステムを作っております。
|
4
4
|
表示することはできたのですが、その情報を保存する機能の実装中にエラーが発生してしまいました。
|
5
|
+
保存可能にする機能は、この教材をもとに進めています。
|
6
|
+
https://developer.apple.com/tutorials/app-dev-training/persisting-data
|
5
7
|
|
6
8
|
カレンダーにはFSCalendarというライブラリを用いています。
|
7
9
|
|
@@ -155,6 +157,63 @@
|
|
155
157
|
}
|
156
158
|
|
157
159
|
```
|
160
|
+
```ScrumStore.swift
|
161
|
+
import Foundation
|
162
|
+
import SwiftUI
|
163
|
+
|
164
|
+
class ScrumStore: ObservableObject {
|
165
|
+
@Published var scrums: Date = Date()
|
166
|
+
|
167
|
+
private static func fileURL() throws -> URL {
|
168
|
+
try FileManager.default.url(for: .documentDirectory,
|
169
|
+
in: .userDomainMask,
|
170
|
+
appropriateFor: nil,
|
171
|
+
create: false)
|
172
|
+
.appendingPathComponent("dates.data")
|
173
|
+
}
|
174
|
+
|
175
|
+
static func load(completion: @escaping (Result<Date, Error>)->Void) {
|
176
|
+
DispatchQueue.global(qos: .background).async {
|
177
|
+
do {
|
178
|
+
let fileURL = try fileURL()
|
179
|
+
guard let file = try? FileHandle(forReadingFrom: fileURL) else {
|
180
|
+
DispatchQueue.main.async {
|
181
|
+
completion(.success(Date()))
|
182
|
+
}
|
183
|
+
return
|
184
|
+
}
|
185
|
+
let dailyScrums = try JSONDecoder().decode(Date.self, from: file.availableData)
|
186
|
+
DispatchQueue.main.async {
|
187
|
+
completion(.success(dailyScrums))
|
188
|
+
}
|
189
|
+
} catch {
|
190
|
+
DispatchQueue.main.async {
|
191
|
+
completion(.failure(error))
|
192
|
+
}
|
193
|
+
}
|
194
|
+
}
|
195
|
+
}
|
196
|
+
static func save(dates: Date, completion: @escaping (Result<Date, Error>)->Void) {
|
197
|
+
DispatchQueue.global(qos: .background).async {
|
198
|
+
do {
|
199
|
+
let data = try JSONEncoder().encode(dates)
|
200
|
+
let outfile = try fileURL()
|
201
|
+
try data.write(to: outfile)
|
202
|
+
DispatchQueue.main.async {
|
203
|
+
completion(.success(dates))
|
204
|
+
}
|
205
|
+
} catch {
|
206
|
+
DispatchQueue.main.async {
|
207
|
+
completion(.failure(error))
|
208
|
+
}
|
209
|
+
}
|
210
|
+
}
|
211
|
+
}
|
212
|
+
|
213
|
+
}
|
214
|
+
|
215
|
+
```
|
216
|
+
|
158
217
|
|
159
218
|
|
160
219
|
### 補足情報(FW/ツールのバージョンなど)
|