currently I am moving uiviews from left to right on the swipe gesture of down how can I change transition to up and down
-(void)slideToRightWithGestureRecognizer:(UISwipeGestureRecognizer *)gestureRecognizer
{
[UIView animateWithDuration:0.5 animations:^{
self.calendar.frame = CGRectOffset(self.calendar.frame, 320.0, 0.0);
self.secondCalender.frame = CGRectOffset(self.secondCalender.frame, 320.0, 0.0);
}];
}