swipe 썸네일형 리스트형 [아이폰 개발]Swipe 기능 스와이프 기능에 대해 간략히 적어보겠습니다. ㄴ 이런식은 좀더 생각하면 답이 나올거 같습니다. 간단하게 좌우, 상하 정도입니다. 소스코드입니다. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *touch = [touches anyObject]; _gestureStartPos = [touch locationInView:self.view]; } - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *touch = [touches anyObject]; CGPoint curEndPos = [touch locationInView:self.view].. 더보기 이전 1 다음