Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7517913
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T01:36:06+00:00 2026-05-30T01:36:06+00:00

I have a core data stack with 2 entities: ‘Client’ and ‘Car’. It is

  • 0

I have a core data stack with 2 entities: ‘Client’ and ‘Car’. It is a one to may relationship. I have two tableViewControllers to display firstly the clients, and then once a client has been chosen a list of that clients cars.

I am currently using the following code fragment in my second tableViewController viewDidLoad method…

NSSet *cars = client.cars;
carsArray = [cars allObjects];

carsArray is a NSArray and is declared and synthesized in the second tableViewCotroller. If I try and make carsArray an NSMutableArray (so I can edit it later in the event a car is deleted) I get the following compiler warning…

Incompatible Objective-C types 'struct NSArray *', expected 'struct NSMutableArray *' when passing argument 1 of 'setCarsArray:' from distinct Objective-C type

Could someone explain to me why this works with a NSArray but not an NSMutableArray please?

Many thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T01:36:07+00:00Added an answer on May 30, 2026 at 1:36 am

    allObjects method returns NSArray * and if you simply try to assign it to an NSMutableArray property you are not converting the object itself.

    You need to use +[NSMutableArray arrayWithArray:] or a more generic method -[NSObject mutableCopy]:

    [self setCarsArray:[[cars allObjects] mutableCopy]];
    

    This will be the case for all mutable classes in Objective-C: to create a mutable object from immutable you’ll have to explicitly call the conversion methods.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Core Data stack in which there are two entities: 'Client' and
I have a core data stack which contains an entity called 'Client'. Each client
I have set up a Core Data model where I have two objects, say
I have a question concerning Core Data and how, if at all, Entities get
I have a question in core data: there are 2 Entities in the project,
I'm using core data and I have a simple two-entity model. My navigation controller
I'm trying to fetch from Core Data records that have a startTime between two
I have started creating an app which uses a core data stack at the
I have some entities in core data, and they are all sub classes of
I have a Core Data entity which needs a gender property. I just need

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.