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 655027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:33:31+00:00 2026-05-13T22:33:31+00:00

I have a few basic questions regarding the syntax and usage of properties in

  • 0

I have a few basic questions regarding the syntax and usage of properties in Objective C:

Assume the following declaration in the header:

@interface TestObject : NSObject {

    NSArray *myArray;
}

@property (nonatomic, retain) NSArray *myArray;

In the implementation, can I:

  1. List item
  2. Use myArray and self.myArray interchangeably for setting and getting purposes?
  3. Is self.myArray = nil equivalent to [myArray release]?
    If so, Is there ever a reason to use self.myArray = nil rather than [myArray release]?
  • 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-13T22:33:31+00:00Added an answer on May 13, 2026 at 10:33 pm
    1. myArray and self.myArray are actually different. myArray is accessing the variable directly, whereas self.myArray (which is equivalent to [self myArray]) is calling an accessor method. Most people agree that you should use self.myArray (or [self myArray]) all the time, and never use myArray directly. This is because the accessor might have side effects; for example, KVO won’t work if you set your variable directly, and memory management won’t be handled for you.

    2. Your property is declared with retain, so self.myArray = anArray (which is the same as [self setMyArray:anArray]) does the following:

      1. Retain anArray, which will soon be the new myArray.
      2. Release the old myArray, which will soon no longer be myArray.
      3. Change the pointer myArray so it now points to anArray.

    Therefore, when you do self.myArray = nil, one of the steps (#2) is indeed release the old array. (And since the new one is nil, we don’t have to worry about its memory management, even though we retained it.) So yes, self.myArray = nil is a valid way of releasing myArray.

    HOWEVER, if you’re talking about releasing myArray in dealloc, it’s generally a good idea to use [myArray release], because calling self.myArray = nil will have side effects if any other objects are observing myArray through KVO. So while it does follow memory management standards, it’s not a good idea to write your dealloc method using self.myArray = nil.

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

Sidebar

Related Questions

No related questions found

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.