이미지 터치하여 이동하기
이미지를 터치하여 이동시키기
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
// 터치한 위치 알기
UITouch *touch = [[event allTouches] anyObject];
CGPoint location = [touch locationInView:touch.view];
// 이미지 이동
image1.center = location;
// 선택한 이미지를 화면의 맨 앞으로 가져온다
[self.view bringSubviewToFront:image1];
}
댓글
댓글 쓰기