TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Eric Horacek.
MSNavigationPaneViewController was written by Eric Horacek for Monospace Ltd.
MSNavigationPaneViewController
is a view controller that handles the presentation of two overlaid child view controllers. The "pane" view can moved with a swipe gesture to reveal the "master" view below. This interface paradigm easily enables the navigation seen in Facebook, Path, and many others.
There are a number of great reasons to use MSNavigationPaneViewController
over of the many other similar overlaid view controller classes:
UITableViews
or other UIScrollViews
added to the pane view controller's view.setPaneViewController:animated:completion:
method, it is first animated off to the right, replaced, and then animated back to the left. This prevents a jarring "pop-in" effect when a new pane view controller replaces the current view.Left (MSNavigationPaneOpenDirectionLeft
) – Default open direction. The navigation pane opens from the left. A left-right swipe can also reveal the master view.
Top (MSNavigationPaneOpenDirectionTop
) – The navigation pane opens from the top. A top-bottom swipe can also reveal the master view.
There are a few types of appearance available for MSNavigationPaneViewController
. They each change some aspect of the visual style of the pane view dragging. The appearance type of the navigation pane is set via the navigationPaneViewController.appearanceType
accessor. The possible types are as follows:
MSNavigationPaneAppearanceTypeNone
) – Default appearance. Doesn't change the master view's appearance in any way as the pane view is dragged.MSNavigationPaneAppearanceTypeParallax
) – Scrolls the master view in from the right as the pane view is dragged.MSNavigationPaneAppearanceTypeZoom
) – Zooms the master view in from an inset state as the pane view is dragged.The default value of the appearance type is MSNavigationPaneAppearanceTypeNone
.
To forward touches through views that require a swipe/pan gesture so that the MSNavigationPaneViewController
doesn't intercept them, simply add their Class
to touchForwardingClasses
:
[navigationPaneViewController.touchForwardingClasses addObject:UISwitch.class];
Both UISlider
and UISwitch
are included by default.
To disable dragging of the pane and prevent MSNavigationPaneViewController
from intercepting touches, set
navigationPaneViewController.draggingEnabled == NO;
Two examples for MSNavigationPaneViewController
are included in the "Example" directory, to run them open Examples.xcworkspace
:
The example projects depend on PRTween
, which is included as a git submodule. To install, run the following:
$ git submodule init
$ git submodule update
Example.xcodeproj
– No Storyboards or NibsStoryboard Example.xcodeproj
– Use with StoryboardsRequires iOS 5.0, ARC, and the QuartzCore Framework.
Forks, patches and other feedback are welcome.
Copyright (c) 2012-2013 Monospace Ltd. All rights reserved.
This code is distributed under the terms and conditions of the MIT license.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.