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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:35:34+00:00 2026-05-25T18:35:34+00:00

Possible Duplicate: Understanding when to call retain on an object? I have a hard

  • 0

Possible Duplicate:
Understanding when to call retain on an object?

I have a hard time to understand when I have to retain an object? Is there a general rule?

For example:

- (IBAction)buttonPressed:(UIButton *)button{

    // some code

    NSString *buttonText = button.titleLabel.text;
    //retain needed or not ?
    [buttonText retain];
    double result = [someObject someMethod:buttonText];

    // some more code
}
  • 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-25T18:35:35+00:00Added an answer on May 25, 2026 at 6:35 pm
    - (IBAction)buttonPressed:(UIButton *)button{
    
    // some code
    
    NSString *buttonText = [button.titleLabel.text retain];
    //retain needed or not ?
    // if you think your code can release the button object at this point, so you have to retain it.
    // like : 
    //[button release];
    
    // its safer to retain your object so there wont be any problem. And dont forget to release
    
    //[buttonText retain];
    
    
    double result = [someObject someMethod:buttonText];
    
    // release when you done with it.
    [buttonText release];
    
    // some more code
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Understanding Python's call-by-object style of passing function arguments I recently came across
Possible Duplicate: css rule to disable text selection highlighting On my homepage i have
Possible Duplicate: Understanding Threads I have a public class that is implementing a Runnable
Possible Duplicate: Rails - Help understanding how to use :dependent => :destroy I have
Possible Duplicate: Understanding Android: Zygote and DalvikVM I am trying to understand how Android
Possible Duplicate: What does *args and **kwargs mean? Understanding kwargs in Python I've found
Possible Duplicate: C++ templates that accept only certain types For example, if we want
Possible Duplicate: Symfony2 AJAX Login I have implemented a custom authentication handler service to
Possible Duplicate: Understanding NSString comparison in Objective-C Was just reading up about equality vs
Possible Duplicate: Understanding Enums in Java Why should we use enums rather Java constants?

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.