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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T05:50:52+00:00 2026-06-07T05:50:52+00:00

I am using ARC with TWRequest. I have successfully returned a search from twitter

  • 0

I am using ARC with TWRequest. I have successfully returned a search from twitter and created an array of the results. Here is my code…

NSArray *results = [dict objectForKey:@"results"];

//Loop through the results
NSMutableArray *twitterText = [[NSMutableArray alloc] init];

for (NSDictionary *tweet in results)
{
    // Get the tweet
    NSString *twittext = [tweet objectForKey:@"text"];

    // Save the tweet to the twitterText array
    [twitterText addObject:twittext];
}
NSLog(@"MY ************************TWITTERTEXT************** %@", twitterText );

My question is, I want to use twitterText later in the .m file under cellForRowAtIndexPath but as soon as the loop through (as above) is finished it is being released under ARC.

I have set the property as strong in my .h file (as well as declaring it above just prior to the loop – not sure if I can do that but if I do not declare in as above the twitterText returns NULL).

Printing a log straight after the loop through as above prints the twitterText Array fine but the same Log in cellForRowAtIndex path method returns a blank, almost like it has forgotten it exists. Any help would be appreciated. Thanks. Alan

  • 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-07T05:50:54+00:00Added an answer on June 7, 2026 at 5:50 am

    You are declaring your variable twitterText in a local context. So ARC is dropping it after the method is done. You should have it declared like this if you’d like to use it outside the scope of that method.

    .h
    @property (nonatomic, strong) NSMutableArray *twitterText;
    
    .m
    @synthesize twitterText = _twitterText; // ivar optional
    
    _twitterText = [[NSMutableArray alloc] init];
    
    for (NSDictionary *tweet in results) {
        // Get the tweet
        NSString *twittext = [tweet objectForKey:@"text"];
    
        // Save the tweet to the twitterText array
        [_twitterText addObject:twittext];
    }
    
    
    -(void)someOtherMethod {
        NSLog(@"twitterText: %@", _twitterText);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

for an iOS 5.0 application using ARC, i have an NSArray of objects that
I have created an iphone application using the empty template without ARC in xcode
Using ARC... NSArray *array = [NSArray arrayWithObjects:@dog, @cat, @mouse, nil]; for(NSString *animal in array)
I have a class with a NSArray property using ARC with nothing fancy... #import
I am using ARC in my code and I am getting the error Object
for iOS 5.0 using ARC, here is something I want to implement and need
Basic question here. I started using ARC and am not sure if I should
i´m using ARC to update my old project. I have a Filehelper class in
I have the following error on a Ios 5 application using ARC: *** -[ViewDettaglio
I have an objective-C program and I am using ARC (Automatic Reference Counting), it

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.