You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@objc class Recipient: Object {
@objc dynamic var rec_id = ""
@objc dynamic var firstName = ""
@objc dynamic var lastName = ""
var phoneNumbers = List<String>()
@objc dynamic var email = ""
@objc dynamic var colorTag = "#FFFFFFFF"
@objc dynamic var isDeleted = false // IceCream requirement
override static func primaryKey() -> String? {
return "rec_id"
}
// initialization code
}
Look at the phoneNumbers property. It is a list of string objects. However the SyncObject doesn't accept String as uListElementType. How can I solve this issue?
The text was updated successfully, but these errors were encountered:
Hi all, I am using icecream library and want to achieve the following functionality.
In app delegate, I have written
where Recipient class is...
Look at the phoneNumbers property. It is a list of string objects. However the SyncObject doesn't accept String as uListElementType. How can I solve this issue?
The text was updated successfully, but these errors were encountered: