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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T16:12:01+00:00 2026-06-04T16:12:01+00:00

I was able to save my array of files in my NSDocumentDirectory . Here

  • 0

I was able to save my array of files in my NSDocumentDirectory.
Here is what I used:

        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *documentsDir = [paths objectAtIndex:0];
        NSString *savedImagePath = [documentsDir stringByAppendingPathComponent:[NSString stringWithFormat:@"Images%d.png", i]];
         ALAssetRepresentation *rep = [[info objectAtIndex: i] defaultRepresentation];
        UIImage *image = [UIImage imageWithCGImage:[rep fullResolutionImage]];
        //NSData *imageData = UIImagePNGRepresentation(image);
        [UIImageJPEGRepresentation(image, 1.0) writeToFile:savedImagePath atomically:YES];

My problem is how to load images with this format@"Images%d.png" into this code:

.h

@property (strong, nonatomic) NSMutableArray *images;

.m

    self.images = ??????
  • 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-04T16:12:02+00:00Added an answer on June 4, 2026 at 4:12 pm

    Here is the code to read the image names from bundle. Please modify bundle path to documents directory path. Code snippet will give you array of sorted image names also save you from using a for-loop to read names.

    NSString *bundlePath = [[NSBundle mainBundle] bundlePath];
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSArray *dirContents = [fileManager contentsOfDirectoryAtPath:bundlePath error:nil];
    NSPredicate *filter = [NSPredicate predicateWithFormat:@"self ENDSWITH '.png'"];
    NSArray *unsortedImages = [dirContents filteredArrayUsingPredicate:filter];
    NSArray *sortedImages = [unsortedImages 
                         sortedArrayUsingComparator:
                         ^NSComparisonResult (id obj1, id obj2){
                             return [(NSString*)obj1 compare:(NSString*)obj2 
                                                     options:NSNumericSearch];
                        }];
    

    Friendly advice: Avoid storing any downloadable data/images in NSDocumentDirectory directory as app may get rejected. Use NSCachesDirectory instead. Please read this post and related documents on Apple’s developer portal.

    Cheers!!
    Amar.

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

Sidebar

Related Questions

a)In my app I want to be able to save files to a directory
I can be able to save store address programmatically by $_address=nl2br('123\nTest',false); $config->saveConfig('general/store_information/address',$_address,'default',0); But the
I was able to save my data onto disk using boost serialization. However, I
I want to be able to save variables between calls to my WCF service
I want to be able to save any C# object in a single column
I'd like to be able to save data submitted by the form based on
I would like to be able to save the QNetworkReply to a QString/QByteArray. In
I wonder if there is a plugin that is able to save the current
I created a DTS package. Someone else wants to be able to save it
I'd like to be able to programmatically save an image from a page to

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.