I am using couple of UIImageViews. One will be fully rendered on the view like a map and the other will be like a character on the map. I want the 2nd one alone to be moved on the map.
My code initiates a touch event on the entire screen(I confirmed from my NSLog) but my 2nd image doesn't move along with my finger. i want the 2nd image to be moved along with my finger. Pls help
Heres the code:
test.h
IBOutlet UIImageView *mapView;
UIImageView *player; //Not using IBOutlet as I don't wanna connect it manually
test.m
UIImageView *player = [[UIImageView alloc ] initWithFrame:CGRectMake(20, 20, 40, 40)];
player.image=[UIImage imageNamed:@"Avatar_0.png"];
player.center;
[self.view addSubview:player];
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
NSLog(@"inside touch");
UITouch *mytouch = [[event allTouches] anyObject];
CGPoint location = [mytouch locationInView:mytouch.view];
//player.center = [mytouch locationInView:self.view];
NSLog(@"inside touch 1");
}
Where Am I going wrong or missing something? Appreciate your help