You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example: if you drag a UINavigationController with a UIViewController that has a UIScrollView in it, upward (into negative space) before dragging it downward, it may skip over the detection range of 0 -> 0.5 that's prescribed here, and the status bar is hidden on that view.
Depending on what you're doing, this is an oversight.
The text was updated successfully, but these errors were encountered:
Honestly, now that I've looked into a bit more about how this works, it really makes more sense to just use UIViewControllerAnimatedTransitioning instead, as it's very lightweight... and avoids this kind of status bar jumpiness.
This doesn't always work:
https://github.com/sgr-ksmt/PullToDismiss/blob/master/Sources/PullToDismiss.swift#L173-L175
Example: if you drag a
UINavigationController
with aUIViewController
that has aUIScrollView
in it, upward (into negative space) before dragging it downward, it may skip over the detection range of0
->0.5
that's prescribed here, and the status bar is hidden on that view.Depending on what you're doing, this is an oversight.
The text was updated successfully, but these errors were encountered: