vote up 0 vote down star

Hi,

Parent is a UIImageView, child is a UIImageView. Both have enable user interaction set to yes. Problem is that child will cover parent view, so can't fire touches from the parent, need to do them from the child. But how can the child either set a new image file in the parent based on it's touch events which can be acquired by user touch, or how can the parent get those events by object (or not) and the x and y coordinates relative to the window when it does? Anything helps!

Thanks // :)

flag

Not sure if this was understandable... basically how can you acquire touch events from a subview in it's parent with unique identification of that subview and with data from it such as x and y locations? Or, even better, how could you have the child touch event set the image file of the parent? Can it access that info, does it have knowledge of it's parent? That would be awesome! Thanks // :) – Spanky Sep 6 at 1:21

1 Answer

vote up 1 vote down check

I'll cover the "child touch event set image file of parent" (the touches will be for the whole screen)

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
NSUInteger tapCount = [touch tapCount];

switch (tapCount) {
	case 1:
		[self performSelector:@selector(parent) withObject:nil afterDelay:0];

		break;
	case 2:

		break;
	default:
		break;
}

- (void)parent
{


UIImage *img = [UIImage imageWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"parent" ofType:@"png"]];
[parent setImage:img];
}

}

as long as the UIImageViews are in the same view you should be fine and dandy like sour candy

OR if you just want it if you touch the child image view, add a UIButton, drag it over the child, and set it as a custom button (will make it invisible) then set the -(void)parent to -(IBAction)parent and add it to the .h

link|flag
Awesome! One glitch... had to set the final "parent" to "super". Then it worked great! Thanks // :) – Spanky Sep 6 at 6:48
yea, that touchesBegan thing is awesome, for example, if you want to double tap, just add it on case 2, triple, case 3 (doesn't exist in this example) case 4, 4 taps. It's great! – matt Sep 6 at 16:40

Your Answer

Get an OpenID
or

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