vote up -1 vote down star

Hi

How can I show an image on an image view after touching a particular area on an iphone? If the user taps on that particular area, I have to find the touch coordinates and change the image.

How is this possible?

Thanks for any help

Balraj Verma

flag

0% accept rate

2 Answers

vote up 0 vote down

Did you look at the documentation?

Suppose you implement touchesBegan, you will get a (NSSet *)touches passes into your handler. You could possibly have a touchesBegan like this:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [touches anyObject];
    touchPosition = [touch locationInView:self];
}

Changing the image is also pretty straight forward:

myImageView.image = [UIImage imageNamed:@"new_image.png"];

I hope this helps. The question is a little vague. If you need more help, add the the code you have, or a specific question about what you are trying to do.

link|flag
vote up 0 vote down

The Touches sample on the apple developer site (requires log in) shows how to move images around based on touch events.

link|flag

Your Answer

Get an OpenID
or

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