Haiyuan
Results
1
comments of
Haiyuan
might try this: ``` extension CoreStoreObject { func toDict() -> Dictionary { var dict = Dictionary() self.cs_toRaw().entity.attributesByName.forEach { (field, value) in dict[field] = self.cs_toRaw().getValue(forKvcKey: field) } return dict } }...