November 2018
Intermediate to advanced
404 pages
10h 16m
English
Since your data model has already been conforming to Codable, you can use the JSONEncoder class to encode the data into a JSON object easily for upload:
guard let jsonData = try? JSONEncoder().encode(entry) else { return }
Read now
Unlock full access