I have a main view and I create more views on it upon touchesBegan,
I want to be able to move the views on top of the background view without moving the main view.
what I have at this moment is:
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
CGPoint pt = [[touches anyObject] locationInView:self];
startLocation = pt;
CGRect myFr = CGRectMake(pt.x-15, pt.y-15, 45.0f, 45.0f);
DrawView* dv2 = [[DrawView alloc] initWithFrame:myFr];
dv2.backgroundColor = [UIColor clearColor];
// dv2.tag=1;
[self addSubview:dv2];
}
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
// Move relative to the original touch point
CGPoint pt = [[touches anyObject] locationInView:self];
CGRect frame = [self frame];
frame.origin.x += pt.x - startLocation.x;
frame.origin.y += pt.y - startLocation.y;
[self setFrame:frame];
}
But this moves my entire view and does not move the smaller frames that I have created on top.
Any help would be much appreciated.