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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T12:41:23+00:00 2026-06-10T12:41:23+00:00

I made a getter do this: @synthesize sheet = _sheet; -(CCSpriteBatchNode *)sheet { if

  • 0

I made a getter do this:

@synthesize sheet = _sheet;

-(CCSpriteBatchNode *)sheet {
    if (!_sheet) {
        _sheet = [CCSpriteBatchNode batchNodeWithFile:@"image.png" capacity:500];
        [self addChild:_sheet];
    }
    return _sheet;
}

But my question is, what is the proper way to declare this property?

in my interface, I have done:

@property (readonly, unsafe_unretained) CCSpriteBatchNode *sheet;

because I thought, since this is “readonly”, I don’t need a strong reference to it– but then I got confused and thought– wait does that mean there’s a chance it will get released, and this should be strong? I used unsafe_unretained instead of weak to have iOS4 support…

  • 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-10T12:41:24+00:00Added an answer on June 10, 2026 at 12:41 pm

    “readonly” property means that there is no setter function to modify the value of the property. That has nothing to do with “strong” versus “weak/unsafe_unretained”.

    You should declare the property “strong” to make sure that the object is not released while somebody is using it.

    In your particular case, self probably retains _sheet because of [self addChild:_sheet], so _sheet will exist at least as long as self. But if you declare the property as “unsafe_unretained” and another class gets the value via

    CCSpriteBatchNode *theSheet = yourWhatEver.sheet;
    

    then theSheet will be an invalid pointer as soon as yourWhatEver is deallocated.

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

Sidebar

Related Questions

Made this nice little loop for hiding and showing div's, works as a charm
I made an iphone app to capture image from camera and to set that
How can I optimize this code ? I made IPFilter and I need to
Made correction to previous errors, this error now comes up. C:\Documents and Settings\AdminUser\My Documents\InventoryPart3.java:93:
I want to create getter/setter methods dyanmically to retrieve private properties. This is what
Made a custom obj called Item with some string fields and one float. .h
I made a dll in c# but i need to export the functions. Is
I made a Web service in which I have a function to count some
I made an application that passes trough an XML file and extracts the entries
i made an .xib file and added my buttons and labels. Then I created

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.