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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T22:56:04+00:00 2026-06-09T22:56:04+00:00

I want to read one data array in iOS, but I read only one

  • 0

I want to read one data array in iOS, but I read only one record in this array, I checked the array and it contains 10 items.

for(NSString *po in list) {
    infor.poster = [po valueForKey:@"Poster"];
    infor.vName= [po valueForKey:@"VName"];
    infor.name = [po valueForKey:@"Name"];
    infor.HDtrailerPath = [po valueForKey:@"HDTrailerPath"];

    [arrfilm addObject:infor];
}

dispatch_async(dispatch_get_main_queue(), ^{
    int widthlblscroll = 0;
    for (Inforfilm *u in arrfilm) {
        Inforfilm *infoF = [[Inforfilm alloc]init];
        infoF.poster = [u valueForKey:@"poster"];
        infoF.name = [u valueForKey:@"name"];

        NSLog(@"%@",infoF.poster);
        NSLog(@"%@",infoF.name);
    }
});
  • 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-09T22:56:06+00:00Added an answer on June 9, 2026 at 10:56 pm

    You were adding the very same instance of Inforfilm multiple times to your array. Just because you update its properties does not mean it is a new instance. To prevent this, instanciate a new instance on every loop iteration. as done in the inner first line.

    for(NSString *po in list) 
    {
        //create a new instance of Inforfilm 
        Inforfilm *infor = [[Inforfilm alloc] init];    
        infor.poster = [po valueForKey:@"Poster"];
        infor.vName= [po valueForKey:@"VName"];
        infor.name = [po valueForKey:@"Name"];
        infor.HDtrailerPath = [po valueForKey:@"HDTrailerPath"];
    
        [arrfilm addObject:infor];
        //make sure you got ARC enabled, otherwise this object will now leak!
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one binary file and I want to read this file like first
I have a large array in RAM and want to read data from it
I want to use one data source (e.g. an Array) for multiple Datagrids that
i want to read characters from the console and print them one after another
I've read that static variables are used inside function when one doesn't want the
Hi I can't understand this error I want read this XML file: <?xml version=1.0
I have a text file. I want read that file. But In that if
I have a specific object with image data. And I want read/write images (in
I have a .txt file with product data, which I want to read in
I want to read an integer array from console using boost::program_options. The length of

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.