Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3229716
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T16:50:34+00:00 2026-05-17T16:50:34+00:00

I want my UIImageView to detect both Tap and Swipe gesture. I’ve coded the

  • 0

I want my UIImageView to detect both Tap and Swipe gesture. I’ve coded the touchesBegan method for Swipe detection, I just want to knw how can i make my ImageView detect both the gestures.

how to code the touchesBegan so that it can handle both of them??

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
if ([touches count] != 1)
    return;

floatSwipeStartX = [[touches anyObject] locationInView:self.view].x;
floatSwipeStartY = [[touches anyObject] locationInView:self.view].y;

intSwipeDirection = 0;

isSwiping = YES;

viewUp.hidden = NO;
viewLeft.hidden = NO;
viewCurrent.hidden = NO;
viewRight.hidden = NO;
viewDown.hidden = NO;

}

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
if (!isSwiping || [touches count] != 1){
    return;
}
CGFloat swipeDistanceX = [[touches anyObject] locationInView:self.view].x - floatSwipeStartX;
CGFloat swipeDistanceY = [[touches anyObject] locationInView:self.view].y - floatSwipeStartY;

CGSize contentSize = [self setContentSize];

if (! intSwipeDirection) {

    if (abs(swipeDistanceX) > abs(swipeDistanceY)) { // swipe left or right
        intSwipeDirection = SWIPE_DIRECTION_HORIZONTAL;
    } else {
        intSwipeDirection = SWIPE_DIRECTION_VERTICAL;
    }

}

if (intSwipeDirection == SWIPE_DIRECTION_HORIZONTAL) {
    viewLeft.frame = CGRectMake(swipeDistanceX - contentSize.width, 0.0f, contentSize.width, contentSize.height);
    viewCurrent.frame = CGRectMake(swipeDistanceX, 0.0f, contentSize.width, contentSize.height);
    viewRight.frame = CGRectMake(swipeDistanceX + contentSize.width, 0.0f, contentSize.width, contentSize.height);
} else {
    viewUp.frame = CGRectMake(0.0f, swipeDistanceY - contentSize.height, contentSize.width, contentSize.height);
    viewCurrent.frame = CGRectMake(0.0f, swipeDistanceY, contentSize.width, contentSize.height);
    viewDown.frame = CGRectMake(0.0f, swipeDistanceY + contentSize.height, contentSize.width, contentSize.height);
}

}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {

CGFloat swipeDistanceX = [[touches anyObject] locationInView:self.view].x - floatSwipeStartX;
CGFloat swipeDistanceY = [[touches anyObject] locationInView:self.view].y - floatSwipeStartY;

if (! isSwiping || (swipeDistanceX == 0 && swipeDistanceY == 0)) {

    //[self updateViews];

    return;
}

if (intSwipeDirection == SWIPE_DIRECTION_HORIZONTAL) {

    if (swipeDistanceX > 50.0f) {
        intNewDirection = SWIPE_TO_THE_RIGHT;
        intCurrentView = intCurrentLeft;
    } else if (swipeDistanceX < -50.0f) {
        intNewDirection = SWIPE_TO_THE_LEFT;
        intCurrentView = intCurrentRight;
    }

} else { // vertical


    if (swipeDistanceY > 50.0f) {
        intNewDirection = SWIPE_TO_THE_UP;
        intCurrentView = intCurrentUp;
    } else if (swipeDistanceY < -50.0f) {
        intNewDirection = SWIPE_TO_THE_DOWN;
        intCurrentView = intCurrentDown;
    }

}

[self updateViews];

isSwiping = NO;

}

Please guide me where to insert the code for Tap gesture. I’m using simulator 3.2

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T16:50:35+00:00Added an answer on May 17, 2026 at 4:50 pm

    If you’re using sdk 3.2 or higher, this is dead easy with the UIGestureRecognizer class.

    Otherwise, I’d do something along the lines of checking the amount of movement of the finger between touches began and touches ended, calling the gesture a tap if the movement is minimal and a swipe if it’s large.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.