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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T09:28:52+00:00 2026-06-10T09:28:52+00:00

I am retrieving an image from the user’s photo library, and saving that image

  • 0

I am retrieving an image from the user’s photo library, and saving that image in the documents directory. I am currently naming the picture based on what the user enters in a text field. This works, but the text field is not really a good name for the picture. I would like to use some sort of unique identifier for naming the pictures.

Any ideas or suggestions? I just do not want to have conflicts when a large amount of photos are saved by the user.

  • 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-10T09:28:54+00:00Added an answer on June 10, 2026 at 9:28 am

    One method is to use UUIDs. Here is an example:

    // return a new autoreleased UUID string
    - (NSString *)generateUuidString
    {
      // create a new UUID which you own
      CFUUIDRef uuid = CFUUIDCreate(kCFAllocatorDefault);
    
      // create a new CFStringRef (toll-free bridged to NSString)
      // that you own
      NSString *uuidString = (NSString *)CFUUIDCreateString(kCFAllocatorDefault, uuid);
    
      // transfer ownership of the string
      // to the autorelease pool
      [uuidString autorelease];
    
      // release the UUID
      CFRelease(uuid);
    
      return uuidString;
    }
    

    Or an ARC version:

    // Create universally unique identifier (object)
    CFUUIDRef uuidObject = CFUUIDCreate(kCFAllocatorDefault);
    
    // Get the string representation of CFUUID object.
    NSString *uuidStr = (__bridge_transfer NSString *)CFUUIDCreateString(kCFAllocatorDefault, uuidObject);
    CFRelease(uuidObject);
    

    Even easier iOS6+ solution:

    NSString *UUID = [[NSUUID UUID] UUIDString];
    

    More info here: http://blog.ablepear.com/2010/09/creating-guid-or-uuid-in-objective-c.html and here: http://en.wikipedia.org/wiki/Universally_unique_identifier

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

Sidebar

Related Questions

I'm currently retrieving image data from an iSight camera and I'd like to hand
I am retrieving a captcha image from the Java based package SimpleCaptcha On the
I am retrieving an image from the SQL database into Byte() variable in VB.NET.
I'm retrieving image from DB using Stream. Need someone to help me to convert
I am trying to retrieving image from sql server 2005 into asp.net web page
I am retrieving an image from my SQLite table and converting it to a
I have a small email application that lets a user build a message from
I have a rather simple task, retrieving an image file from a virtual folder
I am retrieving facebook album images from facebook.I have calculating the image size using
For retrieving image from blobstore, I usually do the following and it works: <img

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.