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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T04:42:50+00:00 2026-06-01T04:42:50+00:00

I’m very new to Objective-C, and am having some beginner issues. I have an

  • 0

I’m very new to Objective-C, and am having some beginner issues. I have an application that has an area that is supposed to behave somewhat like a photo gallery. The user chooses a picture from their camera roll, and the photos get displayed in UIImageViews. I’m trying to save the image that they select. I have 9 UIImageView’s, and the issue is that when I select a different photo for each UIImageView, close and relaunch the app, the other 8 UIImageViews display the photo that is stored in the first image view. Here is the code that I’m working with:

- (NSString *)dataFilePath {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(
                                                         NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    return [documentsDirectory stringByAppendingPathComponent:kFilename9];
}

- (void)applicationDidEnterBackground:(UIApplication*)application {
    NSLog(@"Image on didenterbackground: %@", imageView);
    self.imageData = [NSData dataWithData:UIImagePNGRepresentation(imageView.image)];
    self.imageData = [NSData dataWithData:UIImagePNGRepresentation(imageView2.image)];
    self.imageData = [NSData dataWithData:UIImagePNGRepresentation(imageView3.image)];
    self.imageData = [NSData dataWithData:UIImagePNGRepresentation(imageView4.image)];
    self.imageData = [NSData dataWithData:UIImagePNGRepresentation(imageView5.image)];
    self.imageData = [NSData dataWithData:UIImagePNGRepresentation(imageView6.image)];
    self.imageData = [NSData dataWithData:UIImagePNGRepresentation(imageView7.image)];
    self.imageData = [NSData dataWithData:UIImagePNGRepresentation(imageView8.image)];
    self.imageData = [NSData dataWithData:UIImagePNGRepresentation(imageView9.image)];

    [self.imageData writeToFile:[self dataFilePath] atomically:YES];
    NSLog(@"The image is: %@", [[imageView image] description]);
    NSLog(@"dataFilePath is: %@", [self dataFilePath]);

}

- (void)viewDidLoad
{

    NSString *filePath = [self dataFilePath];
    NSLog(@"FilePath: %@", filePath);
    NSLog(@"Image: %@", imageView);
    if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
        NSData *vdlData = [[NSData alloc] initWithContentsOfFile:filePath];
        imageView.image = [[UIImage alloc] initWithData:vdlData];
        imageView2.image = [[UIImage alloc] initWithData:vdlData];
        imageView3.image = [[UIImage alloc] initWithData:vdlData];
        imageView4.image = [[UIImage alloc] initWithData:vdlData];
        imageView5.image = [[UIImage alloc] initWithData:vdlData];
        imageView6.image = [[UIImage alloc] initWithData:vdlData];
        imageView7.image = [[UIImage alloc] initWithData:vdlData];
        imageView8.image = [[UIImage alloc] initWithData:vdlData];
        imageView9.image = [[UIImage alloc] initWithData:vdlData];
    }


    UIApplication *app = [UIApplication sharedApplication];
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(applicationDidEnterBackground:)
                                                 name:UIApplicationDidEnterBackgroundNotification
                                               object:app];

    [super viewDidLoad];

}

I’m trying to figure out what I need to change to get the UIImageViews to display the correct pictures, rather than them all displaying the same picture. This is probably a simple fix, but any help would be greatly appreciated, thanks!

  • 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-01T04:42:51+00:00Added an answer on June 1, 2026 at 4:42 am

    Okay, here’s how I would do it:

    Use NSUserDefaults to save your images as a mutable array:

    ViewController.h

    @property(retain) NSUserDefaults *user;
    

    ViewController.m

    @synthesize user;
    
    - (void)viewWillAppear:(BOOL)animated
    {
    
        self.user = [NSUserDefaults standardUserDefaults];
    

    Edit

        NSMutableArray* array = [[self.user objectForKey:@"images"]mutableCopy];
        while(array == nil)
        {
           [self.user setObject:[NSMutableArray arrayWithObject:@""] forKey:@"images"]
           array = [[self.user objectForKey:@"images"]mutableCopy];
           NSLog(@"%@",@"attempting to create an array to store the images in");
        }
    

    End Edit
    }

    - (void)applicationDidEnterBackground:(UIApplication*)application {
        NSLog(@"Image on didenterbackground: %@", imageView);
        NSMutableArray* array = [NSMutableArray arrayWithObject:[NSData dataWithData:UIImagePNGRepresentation(imageView.image)]];
    
        [array addObject:[NSData dataWithData:UIImagePNGRepresentation(imageView2.image)];
        [array addObject:[NSData dataWithData:UIImagePNGRepresentation(imageView3.image)];
        [array addObject:[NSData dataWithData:UIImagePNGRepresentation(imageView4.image)];
        [array addObject:[NSData dataWithData:UIImagePNGRepresentation(imageView5.image)];
        [array addObject:[NSData dataWithData:UIImagePNGRepresentation(imageView6.image)];
        [array addObject:[NSData dataWithData:UIImagePNGRepresentation(imageView7.image)];
        [array addObject:[NSData dataWithData:UIImagePNGRepresentation(imageView8.image)];
        [array addObject:[NSData dataWithData:UIImagePNGRepresentation(imageView9.image)];
    
        [self.user setObject:array forKey:@"images"];
    
    }
    
    - (void)viewDidLoad
    {
        NSMutableArray* array = [[self.user objectForKey:@"images"]mutableCopy];
    

    EDIT

        if(array.count == 9)
        {
        imageView.image = [[UIImage alloc] initWithData:[array objectAtIndex:0]];
        imageView2.image = [[UIImage alloc] initWithData:[array objectAtIndex:1]];
        imageView3.image = [[UIImage alloc] initWithData:[array objectAtIndex:2]];
        imageView4.image = [[UIImage alloc] initWithData:[array objectAtIndex:3]];
        imageView5.image = [[UIImage alloc] initWithData:[array objectAtIndex:4]];
        imageView6.image = [[UIImage alloc] initWithData:[array objectAtIndex:5]];
        imageView7.image = [[UIImage alloc] initWithData:[array objectAtIndex:6]];
        imageView8.image = [[UIImage alloc] initWithData:[array objectAtIndex:7]];
        imageView9.image = [[UIImage alloc] initWithData:[array objectAtIndex:8]];
        }
    

    END EDIT

        UIApplication *app = [UIApplication sharedApplication];
        [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(applicationDidEnterBackground:)
                                                 name:UIApplicationDidEnterBackgroundNotification
                                               object:app];
    
        [super viewDidLoad];
    
    }
    
    - (void)viewDidUnload
    {
        self.user = nil;
    }
    

    This way, you will not lose the images or data, they will be stored and easily accessed, and they will not disappear even if you update your app.

    Cheers!

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

Sidebar

Related Questions

I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
I have a text area in my form which accepts all possible characters from
I have some data like this: 1 2 3 4 5 9 2 6
I have a jquery bug and I've been looking for hours now, I can't

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.