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 3343802
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:59:48+00:00 2026-05-18T00:59:48+00:00

I have scrollView with pagingScrollView.pagingEnabled = YES; . After flicking to next page the

  • 0

I have scrollView with pagingScrollView.pagingEnabled = YES;.
After flicking to next page the
scrollView bounces a little after decelerating, here is my log origin.x change with comments:

2010-11-03 12:53:09.187 app[84864:207] scrollview.bound.origin.x: 713.000000 << deccelerating..
2010-11-03 12:53:09.199 app[84864:207] scrollview.bound.origin.x: 727.000000
2010-11-03 12:53:09.212 app[84864:207] scrollview.bound.origin.x: 738.000000
2010-11-03 12:53:09.230 app[84864:207] scrollview.bound.origin.x: 747.000000
2010-11-03 12:53:09.248 app[84864:207] scrollview.bound.origin.x: 754.000000
2010-11-03 12:53:09.262 app[84864:207] scrollview.bound.origin.x: 759.000000
2010-11-03 12:53:09.278 app[84864:207] scrollview.bound.origin.x: 763.000000
2010-11-03 12:53:09.295 app[84864:207] scrollview.bound.origin.x: 766.000000
2010-11-03 12:53:09.312 app[84864:207] scrollview.bound.origin.x: 768.000000 <<at this origin.y, should stop deccelerating
2010-11-03 12:53:09.328 app[84864:207] scrollview.bound.origin.x: 769.000000 <<bounce ?
2010-11-03 12:53:09.377 app[84864:207] scrollview.bound.origin.x: 770.000000 <<bounce ?
2010-11-03 12:53:09.378 app[84864:207] scrollview.bound.origin.x: 769.000000 <<bounce ?
2010-11-03 12:53:09.395 app[84864:207] scrollview.bound.origin.x: 768.000000 <<stopped

How could this happen? The width of frame is 768px.

  • 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-18T00:59:48+00:00Added an answer on May 18, 2026 at 12:59 am

    I have the same issue. Turning off bouncing does nothing.

    UPD:

    I still do not know – why is this happening. I checked the PhotoScroller sample from Apple, and this thing also happening there. I found this workaround – may be it is not quite good, but it works:

    1. I am waiting for this event to occure:

      -(void)scrollViewWillBeginDecelerating:(UIScrollView *)scrollView; 
      

    and then just setting the correct position of the content:

    CGFloat pageWidth = pagingScrollView.bounds.size.width;
    NSInteger curPage = currentPage;
    
    if (firstTapPoint.x > lastTapPoint.x) {
        //NSLog(@"Going prev page");
        curPage = (curPage==0)?0:(currentPage-1);
    }else if(firstTapPoint.x < lastTapPoint.x){
        //NSLog(@"Going next page");
        curPage = (currentPage==([self imageCount]-1))?currentPage:(currentPage+1);
    }else if(firstTapPoint.x == lastTapPoint.x) {
        //NSLog(@"Staying on the same page");       
    }
    
    //NSLog(@"Current page is %d and the next page is %d", currentPage, curPage);
    
    CGPoint finalOffset = CGPointMake(pageWidth * curPage, 0);
    [scrollView setContentOffset:finalOffset animated:YES];
    

    Then the scroll view is scrolling right to the position I specified, without any ‘tail bouncing’

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

Sidebar

Related Questions

I have a paged scrollview. Each page has a viewcontroller (buttonViewController) that manages a
I have a scrollview that has a page control. The scrollview contains 3 views.
I have a scrollview control that has a StackPanel (Orientation=Vertical) UI Element inside of
I have an app which contains a scrollview with several tableviews. Each tableview is
I have an app that shows a series of UIImageView s on a ScrollView
I have a UIScrollView which I create and size dynamically using... scrollView.contentSize = CGSizeMake(scrollView.frame.size.width
I have an scroll view with some sophisticated animations happening during scrolling. Although after
I have a scrollView (width:320px height:100px) on my UIView, inside it I add 10
I have a scrollview and I only want an event to happen if it's
I have a scrollview that I had to the view of the view controller

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.