-
Notifications
You must be signed in to change notification settings - Fork 127
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
HidingNavigationBarManager conflicts with refreshControl #27
Comments
I experience the same with a UITableViewController :-( |
Have the same problem. RefreshControl hides when refreshing (UITableViewController). |
@benjaminhorner , @tcrous , @Mazorati i use hack, set your tableview constraint 12 or any desire number you like from the top |
Experiencing the same issue with UIRefreshControl on UITableView with hiding nav bar and tab bar. |
Not using a UITableViewController but UITableView as a subview and was experiencing similar sounding problems with UIRefreshControl. Setting the following properties on the UIViewController fixed the UIRefreshControl problems.
|
For me, I was able to add this code to the source of
It looks like the issue is caused when the content insets are updating as the refreshControl is loading. |
If I use HidingNavigationBarManager on UICollectionView or UITableView with a refresh control, the HidingNavigationBarManager totally breaks the refresh control.
The refresh becomes jitty and is even sometimes hidden.
I am guessing this has to do with the fact that the HidingNavigationBarManager is doing stuff to the collectionView inset.
Maybe implement a listener to "kill" the HidingNavigationBarManager during refresh…
NOTE: I am implementing
self.hidingNavBarManager?.refreshControl = self.refreshControl
This happens on a UICollectionView with a custom layout. I haven't checked on a standard layout nor on a UITableView
The text was updated successfully, but these errors were encountered: