Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fast swiping down cause flexibleHeader not take effect immediately #48

Open
haashem opened this issue Oct 28, 2015 · 0 comments
Open

Fast swiping down cause flexibleHeader not take effect immediately #48

haashem opened this issue Oct 28, 2015 · 0 comments

Comments

@haashem
Copy link

haashem commented Oct 28, 2015

when I scroll down slowly my custom flexible header smoothly comes down. but when I scroll down fast, flexible header stuck in its place! I don't see this effect when I scroll up fast.
here is the gif:
scroll

my workaround is override setProgress: in my custom flexible header and reposition imageView manually:

- (void)setProgress:(CGFloat)progress
{
    [super setProgress:progress];   
    if (progress<0) {
        self.imageView.y = navBarHeight;
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant