Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a UIView object X that is contained in an UIView object A. I want to be able to touch X and remove it from object A and move it into object B (another UIView). Both Object A & B are inside of the same super UIView.

  A        B
_____    _____
|   |    |   |
| X | -> |   |
|___|    |___|

This is what I have so far.

@implementation X_UIView

float deltaX;
float deltaY;

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    [self.superview.superview addSubview:self]; //pop dragged view outside of container view

    CGPoint beginCenter = self.center;

    UITouch * touch = [touches anyObject];
    CGPoint touchPoint = [touch locationInView:self.superview];

    deltaX = touchPoint.x - beginCenter.x;
    deltaY = touchPoint.y - beginCenter.y;
}

- (void) touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event {
    UITouch * touch = [touches anyObject];
    CGPoint touchPoint = [touch locationInView:self.superview];

    // Set the correct center when touched 
    touchPoint.x -= deltaX;
    touchPoint.y -= deltaY;

    self.center = touchPoint;
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
    //discover view that event ended was over and add self as a subview.
}

@end
share|improve this question
You might be interested in this stack-exchange proposal. It's almost ready to begin beta, just needs a few more. – greatwolf Jan 18 '11 at 9:41
Did you ever complete this? I'm trying to do exactly the same but when I add X to the topmost parent as you do in touchesBegan it disappears. So I'm not able to see the view as I drag it around. Your help is highly appreciated. – Peter Lindholm Feb 7 at 14:27

1 Answer

up vote 7 down vote accepted

Call [[touches anyObject] locationInView: self.superview] to get the point under the finger in the container view. Then send self.superview -hitTest:withEvent: to find out the view X is inside. Note that it will always return X, so you will have to override either -pointIsInside:withEvent: or -hitTest:withEvent: to return nil while you're dragging. This kind of kludge is the reason I would implement such tracking in the container view, rather than in a dragged view.

share|improve this answer
How would you implement the tracking in the container view? – Kendall Hopkins Oct 1 '10 at 20:11
1  
On a second thought, there are perfectly valid reasons to do all tracking in X, so nevermind. By the way, while tracking you can test frames of X and B for intersection instead of checking where the finger is. Depending on your needs, it might be even better for visual feedback. – Costique Oct 2 '10 at 6:01

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.