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

  • Home
  • SEARCH
  • 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 7181623
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:35:47+00:00 2026-05-28T17:35:47+00:00

I have an instance variable which is a struct, for example: struct Data {

  • 0

I have an instance variable which is a struct, for example:

struct Data {
    UInt32 i;
    UInt32 arr[1];
};

And a property is defined in my class:

@property struct Data data; // and the corresponding @synthesize in the imp file

Now, I am aware that changing the values of i and arr through the getter of data is conceptually wrong, since I will be accessing the copy of data returned by the getter (the correct way is accessing it using self->data).

However some general Objective-C questions arise regarding the following lines:

self.data.i = 1;      // produces compile error        
self.data.arr[0] = 1; // compiles ok

First, why does the first line produces a compile error, and the 2nd line does not?

Second, if the dot syntax in the above line (self.data) is just a syntactic sugar to [self data], why do I get 2 different (although similar) compile errors?

self.data.i = 1;   // error: Expression is not assignable
[self data].i = 1; // error: Semantic Issue: Assigning to 'readonly' return result of an objective-c message not allowed
  • 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-28T17:35:49+00:00Added an answer on May 28, 2026 at 5:35 pm

    Actually, structs are passed by value in C (and Objective C). That means that your property actually returns a read only copy (rvalue) of the internal “Data” type. The assignment is to the temporary returned copy, which the compiler (rightfully) flags as a bit suspect.

    The second line that compiles correctly does so since self.data.arr returns a read only UInt32*, but when you index it with [0] and write to that, you’re not writing to the pointer, you’re writing to the memory that it points to which is allowed.

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

Sidebar

Related Questions

Let's say we have a class foo which has a private instance variable bar
I have a page-scoped component, which has an instance variable List with data, which
I have a class with an instance variable of type SEL, which is a
I have a class in python, which has an iterable as instance variable. I
I have a custom class that has as an instance variable of a coordinate:
If you have a Property that gets and sets to an instance variable then
I need to mock a GrailsControllerClass interface. Instance should have a static variable defined.
I have a global variable that is an instance of my custom class. How
If I have for example a class with instance method and variables class Foo
Code snippet to follow. I have a struct (example code has class, tried both,

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.