-
-
Notifications
You must be signed in to change notification settings - Fork 633
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
No more scrolling with iOS 15.1 #406
Comments
Apparently moving the navbar using the frame property no longer works with iOS 15.1 (https://developer.apple.com/forums/thread/691975).
An alternative is to use navigationBar.transform = CGAffineTransform(translationX: 0, y: navigationBar.transform.ty - delta) |
I'm experiencing similar problem under iOS 14.5, and as far as i'm concerned the linked discussion has nothing to do with the library, since it modifies the nav. ber on behalf of the view controller owning it. |
Thanks @chinh-tran , I had the same bug and resolved it with this fix. May I create a PR ? |
@guicolares |
@andreamazz Do you have any ideas about this? Apparently the main feature of this library was broken. |
Nope, I need to find the time to test this. Did anyone test against 15.2 beta by any chance? |
I have the same problem too. if use the transform by chinhtran it helps scroll to the top but navigation will lag frame size and title too. |
Any update on this? This break my app on app store. |
I've looked into this, honestly I don't know how to fix it, you can see during the scrolling that UIKit is fighting against both the frame change and the opacity change, I'm afraid that's not much we can do at this point. I was hoping for an issue with 15.1, but 15.2.1 behaves the same. Why did they start enforcing this with 15.1 is beyond my comprehension. |
I think that answer from Apple might interest you: https://developer.apple.com/forums/thread/691975 |
This can be reproduced with the demo app running
iOS 15.1
(screen capture)RPReplay_Final1635358896_480p.mov
The text was updated successfully, but these errors were encountered: