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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T19:18:42+00:00 2026-06-13T19:18:42+00:00

Are there any disadvantages, if I were to replace all my accessors (get-like const

  • 0

Are there any disadvantages, if I were to replace all my accessors (get-like const methods) with readonly properties in Objective-C? Are they interchangeable?

I prefer readonly properties for documentation/readability.

Coming from C++, I am thinking of replacing all my const methods (non-mutable methods) with readonly properties in ObjC.

If I adhere to this convention, then I can automatically assume that any regular methods will be changing state (non-const method in C++). Also from a functional-programming perspective, knowing that a readonly property won’t change any state (having no side-effects) is useful.

  • 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-06-13T19:18:43+00:00Added an answer on June 13, 2026 at 7:18 pm

    Yes, they are interchangable.

    @interface MyClass : NSObject
    @property (nonatomic, readonly) NSString *myStr;
    @end
    

    is the same as

    @interface MyClass : NSObject
    -(NSString *)myStr;
    @end
    @interface MyClass() { NSString *_myStr } 
    @end
    @implementation MyClass
    -(NSString *)myStr { return _myStr; }
    @end
    

    Although you won’t see it in your code, a property does create a myStr method that is accessible. In both cases, you could use
    self.myStr or [self myStr] to invoke the method.

    Side note: if you are using iOS 6 you do not need to include the @synthesize statement. Otherwise you would write: @synthesize myStr = _myStr; in the implementation file.

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

Sidebar

Related Questions

Are there any disadvantages or performance slowdowns related to the use of expressions like
In SQL Server 2005, are there any disadvantages to making all character fields nvarchar(MAX)
I develop some PHP project on Linux platform. Are there any disadvantages of putting
Are there any advantages or disadvantages to using multiple assignment in a statement? In
Are there any inherent advantages or disadvantages when it comes to handling DDoS attacks
Are there any disadvantages to storing dates as integers (timestamps) in MongoDB rather than
Are there any disadvantages to having first class functions in a language? Joel in
I was wondering - is there any disadvantages in using the hash of something
I was wondering if there are any disadvantages of using words (e.g. AND ,
Are there any disadvantages in performance by using the CallByName function in VB.NET? Is

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.