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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:49:05+00:00 2026-05-26T15:49:05+00:00

I see some examples sometimes would declare a property as well as variable other

  • 0

I see some examples sometimes would declare a property as well as variable other times they do not .e.g. some time I see code like this

@interface Test : NSObject
{
  UIProgressView* _progressView;
}
@property (nonatomic,retain)UIProgressView* progressView;

@end

at other times I will come across

@interface Test : NSObject

@property (nonatomic,retain)UIProgressView* progressView;

@end

Why what are the reasons ? I am learning and almost always use property and variable both.

I have used UIProgressView just as example.

  • 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-26T15:49:06+00:00Added an answer on May 26, 2026 at 3:49 pm

    It depends whether the property is synthesized against an iVar or derived in some other way (or against another iVar).

    IF we have an instance of the class – i.e:

    Test *myTest = [[Test alloc] init];
    

    Then basically the property declaration

    @property (nonatomic,retain)UIProgressView* progressView;
    

    is telling anyone interested in using the interface that they can access the following two functions on an instance of this class:

    [myTest progressBar];
    [myTest setProgressBar:aProgressBar];
    

    And objective C also lets you use shorthand notation:

    myTest.progressBar =
    xxx = myTest.progressBar
    

    which does exactly the same thing.

    It is not necessary for these two methods to be implemented via an iVar of the same name as the property, or even via an iVar at all (they could do even do a database fetch or derive the value).

    If you @synthesize the property (which means you want the precompiler to generate the above methods for you) and don’t explicitly specify an iVar on the @synthesize directive, then the methods described above will automatically be generated (due to the synthesize method) to set or get the value to/from an iVar of the same name as the property (and the implementation will include retain/release logic depending on the property directive.

    If you don’t @synthesize the property then you provide your own implementation and it can be anything you want. It is also possible to @synthesize the property but include a directive to use a different iVar in the method definition:

    @synthesize progressBar=someOtheriVar;
    

    in which case you will not see an iVar of the same name as the property in the header file either.

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

Sidebar

Related Questions

I want to integrate some existing Perl code with ASP.NET. I see plenty examples
Sometimes I would like to quickly see the IL representation of my code snippets
Looking at examples about socket programming, we can see that some people use AF_INET
In some ASP.NET examples i see that events are used with delegates like this
I have an example of some code that I see often in websites that
I see some resources for gcc, but not for Visual Studio. Anyone have a
I see some code where the author has truncated a temp table immediately before
I look around and see some great snippets of code for defining rules, validation,
I'm working on getting some legacy code under unit tests and sometimes the only
Sometimes I see the description of some classes in Android API aren't quite comprehensive

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.