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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T21:11:01+00:00 2026-05-23T21:11:01+00:00

I have in my App Delegate an NSArray that contains a range of LPProduct

  • 0

I have in my App Delegate an NSArray that contains a range of LPProduct objects, each of them has an array of LPColor objects where we have a CGFloat property called price.

In order to get an array with all the customizable LPProduct I made a method called getCustomizableProducts in the App Delegate too. The code is here:

    - (NSArray *)getCustomizableProducts
{
    NSMutableArray *customizables = [[NSMutableArray alloc] initWithArray:[self products]];

    for (LPProduct *product in [self products]) 
    {
        if (![product isCustomizable])
        {
            [customizables removeObject:product];
        }
    }

    for (NSInteger i = 0; i < [customizables count]; i++)
    {
        for (NSInteger j = 0; j < [[[customizables objectAtIndex:i] colors] count]; j++)
        {
            NSLog(@"prices 1: %f", [[[[customizables objectAtIndex:i] colors] objectAtIndex:j] price]);
        }
    }

    return (NSArray *) customizables;
}

The result of the NSLog is the following:

2011-07-22 14:06:44.463 La Portegna[2937:707] prices 1: 315.000000
2011-07-22 14:06:44.470 La Portegna[2937:707] prices 1: 315.000000
2011-07-22 14:06:44.472 La Portegna[2937:707] prices 1: 315.000000
2011-07-22 14:06:44.473 La Portegna[2937:707] prices 1: 195.000000
2011-07-22 14:06:44.475 La Portegna[2937:707] prices 1: 195.000000
2011-07-22 14:06:44.477 La Portegna[2937:707] prices 1: 195.000000
2011-07-22 14:06:44.478 La Portegna[2937:707] prices 1: 145.000000
2011-07-22 14:06:44.482 La Portegna[2937:707] prices 1: 145.000000
2011-07-22 14:06:44.484 La Portegna[2937:707] prices 1: 145.000000
2011-07-22 14:06:44.489 La Portegna[2937:707] prices 1: 145.000000
2011-07-22 14:06:44.492 La Portegna[2937:707] prices 1: 55.000000
2011-07-22 14:06:44.495 La Portegna[2937:707] prices 1: 55.000000
2011-07-22 14:06:44.498 La Portegna[2937:707] prices 1: 55.000000
2011-07-22 14:06:44.501 La Portegna[2937:707] prices 1: 55.000000
2011-07-22 14:06:44.504 La Portegna[2937:707] prices 1: 120.000000
2011-07-22 14:06:44.507 La Portegna[2937:707] prices 1: 120.000000
2011-07-22 14:06:44.510 La Portegna[2937:707] prices 1: 120.000000
2011-07-22 14:06:44.513 La Portegna[2937:707] prices 1: 120.000000
2011-07-22 14:06:44.516 La Portegna[2937:707] prices 1: 215.000000
2011-07-22 14:06:44.519 La Portegna[2937:707] prices 1: 215.000000
2011-07-22 14:06:44.521 La Portegna[2937:707] prices 1: 215.000000
2011-07-22 14:06:44.524 La Portegna[2937:707] prices 1: 110.000000
2011-07-22 14:06:44.527 La Portegna[2937:707] prices 1: 110.000000
2011-07-22 14:06:44.530 La Portegna[2937:707] prices 1: 110.000000
2011-07-22 14:06:44.533 La Portegna[2937:707] prices 1: 110.000000
2011-07-22 14:06:44.536 La Portegna[2937:707] prices 1: 110.000000
2011-07-22 14:06:44.539 La Portegna[2937:707] prices 1: 95.000000
2011-07-22 14:06:44.542 La Portegna[2937:707] prices 1: 95.000000
2011-07-22 14:06:44.545 La Portegna[2937:707] prices 1: 95.000000
2011-07-22 14:06:44.548 La Portegna[2937:707] prices 1: 95.000000
2011-07-22 14:06:44.550 La Portegna[2937:707] prices 1: 95.000000
2011-07-22 14:06:44.553 La Portegna[2937:707] prices 1: 180.000000
2011-07-22 14:06:44.556 La Portegna[2937:707] prices 1: 180.000000
2011-07-22 14:06:44.559 La Portegna[2937:707] prices 1: 180.000000
2011-07-22 14:06:44.561 La Portegna[2937:707] prices 1: 65.000000
2011-07-22 14:06:44.564 La Portegna[2937:707] prices 1: 65.000000
2011-07-22 14:06:44.568 La Portegna[2937:707] prices 1: 65.000000
2011-07-22 14:06:44.571 La Portegna[2937:707] prices 1: 35.000000
2011-07-22 14:06:44.573 La Portegna[2937:707] prices 1: 35.000000
2011-07-22 14:06:44.576 La Portegna[2937:707] prices 1: 35.000000
2011-07-22 14:06:44.579 La Portegna[2937:707] prices 1: 35.000000
2011-07-22 14:06:44.582 La Portegna[2937:707] prices 1: 35.000000
2011-07-22 14:06:44.585 La Portegna[2937:707] prices 1: 35.000000
2011-07-22 14:06:44.588 La Portegna[2937:707] prices 1: 35.000000

Then, in other UIViewController, at viewDidLoad, I call getCustomizableProducts like that:

- (void)viewDidLoad
{
    [super viewDidLoad];

    // Do any additional setup after loading the view from its nib.
    [[self navigationController] setNavigationBarHidden:YES];

    La_PortegnaAppDelegate *appDelegate = (La_PortegnaAppDelegate *) [[UIApplication sharedApplication] delegate];

    [self setAll:[appDelegate getCustomizableProducts]];

    for (NSInteger i = 0; i < [[self all] count]; i++)
    {
        for (NSInteger j = 0; j < [[[[self all] objectAtIndex:i] colors] count]; j++)
        {
            NSLog(@"prices 2: %f", [[[[[self all] objectAtIndex:i] colors] objectAtIndex:j] price]);
        }
    }

    [self setProducts:[[NSMutableArray alloc] init]];

    [self getCollection:0];

    [self printCollection];
}

But the result of the NSLog is not that we would expect:

2011-07-22 14:06:44.590 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.593 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.596 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.600 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.602 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.605 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.608 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.611 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.614 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.617 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.620 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.622 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.625 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.628 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.631 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.634 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.637 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.640 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.643 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.646 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.649 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.652 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.654 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.657 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.660 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.663 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.666 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.669 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.672 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.675 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.678 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.681 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.683 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.686 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.689 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.692 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.695 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.697 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.701 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.704 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.707 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.709 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.712 La Portegna[2937:707] prices 2: 0.000000
2011-07-22 14:06:44.715 La Portegna[2937:707] prices 2: 0.000000

all is declared as NSArray.

Anyone can say me what I doing wrong? Why the prices disappear suddenly?

Thank you very much in advance, best regards!

  • 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-23T21:11:02+00:00Added an answer on May 23, 2026 at 9:11 pm

    It looks like all is not set properly. Check what’s returned from the delegate and what’s stored in all to pinpoint the problem.

    - (void)viewDidLoad
    {
        [super viewDidLoad];
    
        // Do any additional setup after loading the view from its nib.
        [[self navigationController] setNavigationBarHidden:YES];
    
        La_PortegnaAppDelegate *appDelegate = (La_PortegnaAppDelegate *) [[UIApplication sharedApplication] delegate];
    
        NSLog(@"customizables: %@",[appDelegate getCustomizableProducts]);  // <-- add this
        [self setAll:[appDelegate getCustomizableProducts]];
        NSLog(@"all: %@", [self all]);                                      // <-- and this
    
        for (NSInteger i = 0; i < [[self all] count]; i++)
        {
            for (NSInteger j = 0; j < [[[[self all] objectAtIndex:i] colors] count]; j++)
            {
                NSLog(@"prices 2: %f", [[[[[self all] objectAtIndex:i] colors] objectAtIndex:j] price]);
            }
        }
    
        [self setProducts:[[NSMutableArray alloc] init]];
    
        [self getCollection:0];
    
        [self printCollection];
    }
    

    You also have a memory leak in your getCustomizableProducts method. Consider changing its last line to

    return (NSArray *)[customizables autorelease];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a NavigationController based iPhone app that has a navigationBar and a toolbar.
I have an app which has UITabBar with 5 views, each attached to a
I have an app that needs to open a new window (in the same
I have an app written in C# that lies on a network share. When
I have an app where I create many uiviews and add them to the
I have an app that executes commands on a Linux server via SSH just
I have a app that I'm deploying to a development server using Capistrano. I'd
I have a App that uses the In App feature. -(void) completeTransaction: (skPaymenttransaction *)transaction{
I have an app with a UITabBarController that manages some UINavigationControllers, which in turn
So I have an app. On the mainWindow I have 1 button. When 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.