Jayaraj
Jayaraj

Reputation: 89

Getting image name from uiimageview

I want to get the particular image name by touching inside of that image. Can any one give me the sample code for that?

Upvotes: 1

Views: 4811

Answers (2)

Evan Mulawski
Evan Mulawski

Reputation: 55334

Nick Weaver is correct. There is still a way to do it, though.

Create an array with the names of the images. Set the tag property of each UIImageView so it corresponds to the names in the array. Then, access the array via the tag property.

NSArray *nameArray = [NSArray arrayWithObjects:@"image1", @"image2", nil];

//touch happened

NSString *imageName = [nameArray objectAtIndex:imageView.tag];

Another method is creating a UIImageView subclass.

Upvotes: 2

Nick Weaver
Nick Weaver

Reputation: 47241

UIImageView nor UIImage do store the name of the image you have used to create the image. You can subclass UIImageView and use your own initializer and an extra field to store the name.

Upvotes: 0

Related Questions