Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It appears that side-swipe menus are becoming a more common interface element as more information gets crammed into each iPhone app. Facebook has included it in their latest version and the new Gmail app appears to include it as well. I was wondering if anybody had thoughts on the most efficient way of developing something like this as it's becoming a more common interface element. While I have my own thoughts on how to build this, I'm curious to hear what other people think.

Facebook swipe navigation

share|improve this question
I've noticed, that when sideswipe menu is activated, you can't do anything with swiped-out part of the view. My idea was to render current view in image and display portion of it, when sideswipe is activated – Denis Nov 21 '11 at 14:21
1  
Whose Facebook profile did you peek in, Nick O'Neill? :-p – Randy Marsh Nov 22 '11 at 11:25
possible duplicate of SplitView but on iPhone – JosephH Jan 14 at 16:53
Ooh! Ooh! Don't forget to put one on the right side, too! – noa Mar 12 at 0:22
1  
@Zoidberg I'm interested to hear more about this. Personally, I like the sidenav! But I am a developer, not a designer. What makes this UX poor? – Robert Karl Mar 27 at 21:33
show 1 more comment

11 Answers

up vote 14 down vote accepted
+50

I recently came across this, didn't actually look at the code or test the control, but looks like it may be a very decent starting point.

http://cocoacontrols.com/platforms/ios/controls/jtrevealsidebar

share|improve this answer
Doesn't allow the user to slide – cannyboy Sep 27 '12 at 9:05
3  
If you looking for swipe functionality. Insert a gesture recognizer to the view then replace the toggle button with the gesture recognizer. – teuben Jan 30 at 14:52

There is a great library for this by Tom Adriaenssen: Inferis/ViewDeck

It's very easy to use and has a fairly large following.

EDIT:

For something a little more lightweight, check out: mutualmobile/MMDrawerController

It doesn't have all of the features of ViewDeck but is simpler to modify and extend.

share|improve this answer
5  
I recommend everybody use this. – Almas Adilbek Aug 7 '12 at 9:33
2  
best solution: flexible and simple to use – HotJard Oct 19 '12 at 10:04
2  
I tried it and found a lot of Bugs in their Example. After some fast clicks the viewcontrollers are misaligned – Torsten B Jan 10 at 14:45
1  
This is pretty cool. – Jxdwinter Mar 13 at 2:02
@TorstenB I've used it for several apps and it always seems to work fine for me. That being said, if you have a reproducible bug, try filing an issue here. The library is still actively being developed so there is a good chance someone will help you with your issue. – Chris Knadler Mar 17 at 0:21
show 2 more comments

I created a library for this. It is called MFSideMenu.

Among other things it includes support for iphone+ipad, portrait+landscape, menu on the left or right side, UITabBarController, and pan gestures.

share|improve this answer
Its a great project .. but Its not supporting for landscape mode.. Can u give us a hint to use it in landscape mode too .. Thanks – Sameera Chathuranga Jun 26 '12 at 5:24
Thanks @SameeraChathuranga. I hope to add landscape support if I get some time. The only part that doesn't have landscape support is the SideMenuViewController... I believe you would have to do something like the 2nd answer here: stackoverflow.com/questions/2508630/…. Feel free to fork and contribute to the repo! – Michael Frederick Jun 26 '12 at 5:56
Awesome dude .. That Answer is helpful to me, and did Some changes to your code too and it works :) great and thanks ... – Sameera Chathuranga Jun 26 '12 at 7:45
3  
For anyone that's interested, I just added landscape support to the library. – Michael Frederick Jul 2 '12 at 19:18
1  
@AlmasAdilbek, can you explain what parts of your app experienced a decrease in performance? I would be happy to make any necessary optimizations. – Michael Frederick Aug 7 '12 at 17:54
show 8 more comments

Another option is to use Scringo . It gives you a side-menu like in youtube/facebook apps, and also all kind of built-in features in the menu that you can choose to add (e.g chat, invite friends, etc...)

Adding the side-menu is simply by calling [ScringoAgent startSession...] and all configuration can be done on the site.

share|improve this answer
Works great. Thanks – Tom Feiner Mar 19 at 5:57

Facebook's implementation places a UIPanGestureRecognizer on the UINavigationBar. Thus allowing to catch swipes where it's needed.

That allows to do things like, recognizing the touch direction in x/z directly as well as the speed they occurred with.

Also such kind of tinkering with UIViews (more than one on screen at a time with evidently different tasks -> thus different controllers) should (I'm tempted to say must) use iOS new ViewController-Containment features. Every implementation without that is simply bad as it tinkers with the view hierarchy in a way not intended by Apple.

On a sidenote: If you're really curious on how it can be done as close to Facebook's way as possible, check out the project I open sourced on Github https://github.com/pkluz/PKRevealController .

share|improve this answer
There is nothing wrong (or HIG non-compliant) with managing UIView-based custom UI. View controller containment came too late, so plenty of other approaches have been used. A related article: blog.carbonfive.com/2011/03/09/abusing-uiviewcontrollers – Jacob Jennings Dec 28 '11 at 20:57
I do know this and various other articles covering the topic but there's absolutely no reason for anyone to follow the advise given there considering containment is now public. All these "solutions" are sub-par hacks and workarounds. They shouldn't be used in production code anymore. Of course you can do it but you simply shouldn't.This said: Everthing is wrong with these approaches. – wasabii Dec 29 '11 at 8:56
Major developments won't be targeting a minimum version of iOS 5 for a long time, since a large number of users won't upgrade for a very long time. While many of them are 'hacks' as you say, it can certainly be done correctly. Staying within frameworks is definitely a safe bet, but sometimes a unique and custom UI requires more. – Jacob Jennings Dec 29 '11 at 15:22

Both Gmail and Facebook make heavy use of web views, so it's hard to say what's native code and what's rendered HTML. However, looking at the interface, it looks like they've placed a UITableView with a width narrower than the screen width (320pt) underneath of a UIView that contains the content they want to display. Selecting different tableview rows probably swaps out a subview of the content view.

At least, that's how I'd approach the problem. It's hard to dictate what it should be. Just jump right in and start experimenting!

share|improve this answer

If you want I did this repo on github https://github.com/JJSaccolo/GSSlideMenu It allow you to create a Facebook-style menu BUT with a "back" webView (generally all repos that I've found has a tableView as the "back" view).

share|improve this answer

the view in the right could be inside a subclass of UIScrollView. In this subclass you can override - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event to return YES only if the user touched the subview. This way you can place your transparent UIScrollView over any other view and pass through any touch event that takes place outside the subview; and you get scroll stuff for free.

For example:

- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event{
    CGPoint location=[self convertPoint:point toView:subview];
    return (location.x > 0 && location.x <subview.frame.size.width && location.y>0 && location.y<subview.frame.size.height);
}

or:

- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event{
    return [subview pointInside:[self convertPoint:point toView:subview] withEvent:event];
share|improve this answer

Try adding your menu (that you swipe to get to) underneath the main view. Begin subscribing to touch events in the view.

Implement touchesMoved:, and check to see if the first gesture is vertical (scroll the main view, if needed), or horizontal (here you'd want to show the menu). If it's horizontal, begin invoking another method, - (void)scrollAwayMainView:(NSUInteger)pixels, whenever touchesMoved: gets called, calculating the number of pixels away from the starting point the main view should be, and passing that number into the method. In that methods implementation, run the following code:

[mainView scrollRectToVisible:CGRectMake:(pixels, mainView.origin.y, mainView.size.width, mainView.size.height];
share|improve this answer

Even better is JASidePanels. Easily implemented and works for both iPhone and iPad. https://github.com/gotosleep/JASidePanels

share|improve this answer

Check out MMDrawerController:

https://github.com/mutualmobile/MMDrawerController

We couldn't find a library that we liked, so we just rolled our own.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.