added demo for classic ListMonitor

This commit is contained in:
John Estropia
2020-08-30 20:16:01 +09:00
parent 007da014f8
commit 8d7f282743
63 changed files with 1463 additions and 102 deletions

View File

@@ -1914,14 +1914,14 @@ class Vehicle: CoreStoreObject {
Built-in encoders such as `FieldCoders.NSCoding`, `FieldCoders.Json`, and `FieldCoders.Plist` are available, and custom encoding/decoding is also supported:
```swift
class Person: CoreStoreObject {
<br />
struct CustomInfo: Codable {
// ...
}
<br />
@Field.Coded("otherInfo", coder: FieldCoders.Json.self)
var otherInfo: CustomInfo?
<br />
@Field.Coded(
"photo",
coder: {