[iPhone]제스쳐 ( Gesture )
화면 전환이나 어떠한 효과를 줄 때 touchBegan, touchesEnded에서 처리하고는 했는데 아래와 같이 콜백만 등록해 주면 되는 것도 있다. UISwipeGestureRecognizer *swipeGestureLeft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeGestureLeft:)]; [self.view addGestureRecognizer:swipeGestureLeft]; swipeGestureLeft.direction = UISwipeGestureRecognizerDirectionLeft; [swipeGestureLeft release]; UISwipeGestureRecognize..
iOS/자료정리
2011. 7. 12. 14:50
반응형