Scroling stop at screen touch



  • Good night. The point is next. Got it. UIScrollView with the caste paging, after the swaip, if you press it again on the moving again, it stops at the time of the pressure. Can you tell me how to turn this off? Thank you.



  • Delegate UIScrollViewDelegate and define the following methods:

    - (void) scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset {
        [scrollView setUserInteractionEnabled:NO];
    }
    
    • (void) scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
      [scrollView setUserInteractionEnabled:YES];
      }


Suggested Topics

  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2