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

  • Home
  • SEARCH
  • 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 7891117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:32:09+00:00 2026-06-03T06:32:09+00:00

Using ARC, is it now OK to assign a string value like this: self.userName

  • 0

Using ARC, is it now OK to assign a string value like this:

 self.userName = [[NSString alloc] initWithString:self.currentParsedCharacterData];

Or does that still cause a memory leak, thus requiring me to assign it like this:

NSString *tmpString = [[NSString alloc] initWithString:self.currentParsedCharacterData];
self.userName = tmpString;
  • 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-03T06:32:10+00:00Added an answer on June 3, 2026 at 6:32 am

    The first snippet is just fine under ARC, and is the better of the two ways. Apple has an example like this in the Transitioning to ARC guide:

    - (void)contrived {
        Person *aPerson = [[Person alloc] init];
        [aPerson setFirstName:@"William"];
        [aPerson setLastName:@"Dudney"];
        [aPerson setYearOfBirth:[[NSNumber alloc] initWithInteger:2011]];
        NSLog(@"aPerson: %@", aPerson);
    }
    

    and says:

    ARC takes care of memory management so that neither the Person nor the NSNumber objects are leaked.

    The setYearOfBirth: message with an alloced NSNumber corresponds to your snippet.

    The compiler understands that, in the first case, aPerson is going out of scope and needs to be released before that happens, and, in the second case, that there is no explicit reference to the NSNumber object and that it must be either released or put into the autorelease pool. It takes care of both these requirements on your behalf.

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

Sidebar

Related Questions

I am using ARC in my app. Now I faced a real problem. I
I've recently converted to using ARC. However, i'm having a weird crash now, and
I am using a non-ARC framework in my ARC-enabled app. Now I get a
for iOS 5.0 using ARC, here is something I want to implement and need
I am developing an app using ARC When profiling my app in instruments for
for an iOS 5.0 application using ARC, i have an NSArray of objects that
I draw an arc using onDraw(canvas) : @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
Is there a way to draw an arc using points in JavaScript?? I need
I just converted an old project to ARC using Xcode's automatic refactoring. @property (nonatomic,
I'm writing an iOS 5 app (in Xcode 4.3, using Storyboards and ARC) that

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.