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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:38:38+00:00 2026-05-27T03:38:38+00:00

My project use ARC. I tested with the code below: NSString __weak *string; @autoreleasepool

  • 0

My project use ARC. I tested with the code below:

NSString __weak *string;
@autoreleasepool {
        string = [NSString stringWithString:@"AAA"];
}

NSLog(@"string: %@", string);

I think it output as:

string: (null)

but it actually output:

string: AAA

I don’t understand it. What is the effect of __weak?

EDIT:

And this code below:

NSString __weak *string;
NSString __strong *str;
@autoreleasepool {
    str = [NSString stringWithFormat:@"%@", @"AAA" ];
    string = str;
}

NSLog(@"string: %@", string);

It also output as:

string: AAA
  • 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-27T03:38:39+00:00Added an answer on May 27, 2026 at 3:38 am
    NSString __weak *string;
    @autoreleasepool {
            string = [NSString stringWithFormat:@"%@", @"AAA"];
    }
    
    NSLog(@"string: %@", string);
    

    it outputs as the following what you want.

    string: (null)
    

    Thus,

    string = [NSString stringWithString:@"AAA"];
    

    is same as

    string = @"AAA";
    

    the constant string literal that is not allocated in the heap.

    EDITED:

    str variable has still strong reference for the autoreleased object.

    The following code is what exactly you want.

    NSString __weak *string;
    {
        NSString __strong *str;
        @autoreleasepool {
            str = [NSString stringWithFormat:@"%@", @"AAA" ];
            string = str;
        }
    }
    NSLog(@"string: %@", string);
    

    And

    NSString __weak *string;
    @autoreleasepool {
        NSString __strong *str;
        str = [NSString stringWithFormat:@"%@", @"AAA" ];
        string = str;
    }
    NSLog(@"string: %@", string);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've yet to use ARC, since the majority of the code in the project
In a project i use the following code to open a window: window.open(href, 'mysite'
My project using ARC, so I can't use retain nor release, in ViewController A,
I want to use CocosDenshion with my ARC enabled project but when I simply
I'm trying to use TPMultiLayoutViewController in a project using ARC, but am bumping into
I am upgrading an iOS 4 project to use ARC with the sdk5. So
I am refactoring to use ARC in my project and can not figure out
Hello! I tried to use a delegate in my app. My project uses ARC
I created a project without ARC . I want to use a third party
In our project we use both VB.NET and C# code. Now, Microsoft seems do

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.