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
```switchToViewController:withCompletion:``` method has been deprecated. In order to get the exact same behavior use ```popToRootAndSwitchToViewController:withCompletion```
17
+
18
+
New features:
19
+
- Allows limiting pan gesture to the sides of the view
20
+
- Allows turning shadow on/off
21
+
- Allows turning slide-out animation on/off when switching between viewControllers
22
+
- Minor bug fixes
23
+
14
24
Version 1.3.0 Notes
15
25
---------
16
26
If you are updating from previous versions you'll get compile errors, due to changes to RevealAnimations.
@@ -75,6 +85,12 @@ This can be usefull when you have a menu item, and when the user selects an alre
75
85
When set to YES user can swipe to open the menu
76
86
77
87
When set to NO swipe is disabled, and use can only open the menu using the UIBarButtonItem added to the navigationBar
88
+
######panGestureSideOffset
89
+
This property allows you to limit the gesture to the sides of the view. For instance setting this value to 50 means touches are limited to 50 pixels to the right and 50 pixels to the left of the view. This could be useful if you are expecting slide-to-delete functionality on UITableViews.
90
+
91
+
Default value of panGestureSideOffset is set to 0. Setting panGestureSideOffset to 0 means touches are detected in the whole view if enableSwipeGesture is set to true.
92
+
###### enableShadow
93
+
A boolean that allows you to turn shadow on/off. On default shadow is set to true
78
94
###### rightMenu
79
95
The viewController of the right menu in the navigationController
80
96
###### leftMenu
@@ -108,7 +124,19 @@ Public Methods
108
124
Returns the singleton instance of SlideNavigationController
0 commit comments