CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ | 
| LangLanguage | Obj-CObjective C | 
| License | MIT | 
| ReleasedLast Release | Apr 2015 | 
Maintained by Jonathan Vukovich Tribouharet.
An animated hamburger button for iOS.
With CocoaPods, add this line to your Podfile.
pod 'JTHamburgerButton', '~> 1.0'
#import <UIKit/UIKit.h>
#import <JTHamburgerButton.h>
@interface ViewController : UIViewController
@property (weak, nonatomic) IBOutlet JTHamburgerButton *button;
@end#import "ViewController.h"
@implementation ViewController
- (IBAction)didBackButtonTouch:(JTHamburgerButton *)sender
{
    if(sender.currentMode == JTHamburgerButtonModeHamburger){
        [sender setCurrentModeWithAnimation:JTHamburgerButtonModeArrow];
    }
    else{
        [sender setCurrentModeWithAnimation:JTHamburgerButtonModeHamburger];
    }
}
- (IBAction)didCloseButtonTouch:(JTHamburgerButton *)sender
{
    if(sender.currentMode == JTHamburgerButtonModeHamburger){
        [sender setCurrentModeWithAnimation:JTHamburgerButtonModeCross];
    }
    else{
        [sender setCurrentModeWithAnimation:JTHamburgerButtonModeHamburger];
    }
}
@endThe method setCurrentModeWithAnimation animates the transition from one mode to another. There is also setCurrentMode which changes the view without transition.
There are three modes:
lineHeightlineWidthlineSpacinglineColoranimationDurationAfter the change of one of this properties you have to call updateAppearance to update the view.
JTHamburgerButton is released under the MIT license. See the LICENSE file for more info.