Add the protocol delegate to the View Controller's .h header file;
Add the following code to the viewDidLoad in .m file for each gesture defined;
UISwipeGestureRecognizer *swipeRecognizer = [[UISwipeGestureRecognizer alloc]
initWithTarget:self action:@selector(handleSwipe:)];
[self.postCard addGestureRecognizer:swipeRecognizer];
[swipeRecognizer release];
initWithTarget:self action:@selector(handleSwipe:)];
[self.postCard addGestureRecognizer:swipeRecognizer];
[swipeRecognizer release];
Create the handleSwipe method like;
- (void)handleSwipe:(UISwipeGestureRecognizer *)recognizer
{
[self transformMoveNScale];
}