skip to Main Content

Is it possible to turn selected properties/ columns of an NSManagedObject back to fault to optimise memory usage? – Ios swift

Currently, I have a note application, which I am using the following CoreData structure. extension Note { @nonobjc public class func fetchRequest() -> NSFetchRequest<Note> { return NSFetchRequest<Note>(entityName: "Note") } @NSManaged public var heavy_body: String? @NSManaged public var lite_title: String? @NSManaged…

VIEW QUESTION
Back To Top
Search