---
title: "What is the use of Managed Objects in Core-Data"  
description: "What is the use of Managed Objects in Core-Data"  
author: "Tarun Kumar"  
published: 2015-09-21  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/22835/what-is-the-use-of-managed-objects-in-core-data  
category: "iphone"  
tags: ["iphone", "ios", "objective c"]  
reading_time: 1 minute  

---

# What is the use of Managed Objects in Core-Data

In Core-Data Managed Objects are actually instances of the **NSManagedObject** class, or a subclass. These objects are created for our application code to store data. In relational database table for each new record to be added, managed objects acts as a row or a record, a new managed object must be created to store the data. Similarly, retrieved data will be returned in the form of managed objects, one for each record matching the defined retrieval criteria. These objects are contained and maintained by the NSManagedObjectContext class.

## Answers

### Answer by Tarun Kumar

In Core-Data Managed Objects are actually instances of the **NSManagedObject** class, or a subclass. These objects are created for our application code to store data. In relational database table for each new record to be added, managed objects acts as a row or a record, a new managed object must be created to store the data. Similarly, retrieved data will be returned in the form of managed objects, one for each record matching the defined retrieval criteria. These objects are contained and maintained by the NSManagedObjectContext class.


---

Original Source: https://www.mindstick.com/interview/22835/what-is-the-use-of-managed-objects-in-core-data

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
