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
iOS 7 introduced new system-wide gestures, such as navigating back to a previous view controller through a 'swipe' gesture.
Looks like the current implementation does not expect that (e.g.: the private readonly UIPanGestureRecognizer _panGesture; property).
I'm also facing a strange behaviour: If I pan the top view controller all way to the right and then still try (insist) panning the top view controller to the same direction (right) I get the unexpected black background in the middle of the screen, as shown in the screenshot:
The text was updated successfully, but these errors were encountered:
Will look into this after upgrading to the latest iOS sdk's. If i remember correctly you can quickly solve this by manipulating the widths and offsets but i will look into the calculations to take the correct screen widths. I assume you are developing for iPad?
I'm developing for both iPhone and iPad. The behaviour applies for both platforms.
I also noticed a crash while panning the navigation bar. Currently I just commented private readonly UIPanGestureRecognizer _panGesture; to avoid crashes on my production app.
iOS 7 introduced new system-wide gestures, such as navigating back to a previous view controller through a 'swipe' gesture.
Looks like the current implementation does not expect that (e.g.: the
private readonly UIPanGestureRecognizer _panGesture;
property).I'm also facing a strange behaviour: If I pan the top view controller all way to the right and then still try (insist) panning the top view controller to the same direction (right) I get the unexpected black background in the middle of the screen, as shown in the screenshot:
The text was updated successfully, but these errors were encountered: