Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using an UIImage, in which I have an Image, and I want to know the name of image.

share|improve this question
2  
i dont think it is possible to get the name of image – Wolvorin Apr 23 '12 at 11:07

3 Answers

up vote 3 down vote accepted

That functionality is not built-in to UIImage because images are not always loaded from files. However, you could create a custom UIImageView subclass to fit your needs.

share|improve this answer

It is not possible. UIImage instance contains the actual image data without any reference to the filename.

share|improve this answer

Images do not necessarily come from files or other named sources, so not all images even have a name. When you create an image from a file, you could store the name in a separate NSString*, and then refer to that stored name when necessary.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.