EEJSelectMenu alternatives and similar libraries
Based on the "Menu" category.
Alternatively, view EEJSelectMenu alternatives based on common mentions on social networks and blogs.
-
PageMenu
A paging menu controller built from other view controllers placed inside a scroll view (like Spotify, Windows Phone, Instagram) -
SideMenu
Simple side/slide menu control for iOS, no code necessary! Lots of customization. Add it to your project in 5 minutes or less. -
SlideMenuControllerSwift
iOS Slide Menu View based on Google+, iQON, Feedly, Ameba iOS app. It is written in pure swift. -
CircleMenu
:octocat: ⭕️ CircleMenu is a simple, elegant UI menu with a circular layout and material design animations. Swift UI library made by @Ramotion -
BTNavigationDropdownMenu
The elegant yet functional dropdown menu, written in Swift, appears underneath the navigation bar to display a list of defined items when a user clicks on the navigation title. -
GuillotineMenu
Our Guillotine Menu Transitioning Animation implemented in Swift reminds a bit of a notorious killing machine. -
PagingKit
PagingKit provides customizable menu UI. It has more flexible layout and design than the other libraries. -
CategorySliderView
slider view for choosing categories. add any UIView type as category item view. Fully customisable -
RadialMenu
RadialMenu is a custom control for providing a touch context menu (like iMessage recording in iOS 8) built with Swift & POP -
DTPagerController
A fully customizable container view controller to display a set of ViewControllers in a horizontal scroll view. Written in Swift. -
RHSideButtons
Library provides easy to implement variation of Android (Material Design) Floating Action Button for iOS. You can use it as your app small side menu. 🌶
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of EEJSelectMenu or a related project?
README
EEJSelectMenu
<!----> <!----> <!----> <!---->
EEJSelectMenu is a responsive single selection menu for iOS.
Project allows for implementing a menu with different number of buttons and different animations for appearance.
It will adjust the button sizes based on the device screen size!
Just provide the names for the buttons and the menu will take care of the number and layout of the buttons!
Demo
[](first.gif)
[](second.gif)
[](third.gif)
Version 1.1.1
Installation
Using CocoaPods
EEJSelectMenu is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'EEJSelectMenu'
Using Source Files
Add the files in the Classes/
folder to your project
Import the header file to your source code
#import "EEJSelectMenu.h"
Getting Started
Note: 🔶 To use EEJSelectMenu in your Swift project add use_frameworks!
to your Podfile or checkout these simple steps to create a bridging header and get you started. 🔶
Initializers
-initWithButtons:animationStyle:color:andDelegate:
-initWithButtons:animationStyle:colors:
Create an instance of EEJSelectMenu and provide button names and color
NSArray *buttonNames = @[@"ONE",@"TWO",@"THREE",@"FOUR"];
EEJSelectMenu *menu = [[EEJSelectMenu alloc]initWithButtons:buttonNames
animationStyle:EEJAnimationStyleFadeIn
color:[UIColor darkGrayColor]
andDelegate:self];
[self presentViewController:menu animated:NO completion:nil];
For Multi-Color menu use this initializer
NSArray *buttonNames = @[@"ONE",@"TWO",@"THREE",@"FOUR"];
EEJSelectMenu *menu = [[EEJSelectMenu alloc]initWithButtons:buttonNames
animationStyle:EEJAnimationStyleFadeIn
colors:@[[UIColor redColor],[UIColor greenColor]
[UIColor blueColor],[UIColor orangeColor]] ];
menu.delegate = self;
[self presentViewController:menu animated:NO completion:nil];
Or simple initializer with the default color
EEJSelectMenu *menu = [[EEJSelectMenu alloc]init];
menu.buttonNames = @[@"ONE",@"TWO",@"THREE",@"FOUR"];
menu.animationStyle = EJAnimationStyleAlternate;
menu.delegate = self;
// default color is light blue
[self presentViewController:menu animated:NO completion:nil];
AnimationStyle
menu.animationStyle = EJAnimationStyleFadeIn; // default
Other AnimationStyles Available:
EJAnimationStyleWiden
EJAnimationStyleScale
EJAnimationStyleMoveInFromLeft
EJAnimationStyleMoveInFromRight
EJAnimationStyleAlternate
Delegate Methods
EEJSelectMenu provides two delegate methods
-(void)EJSelectMenuButtonWasPressedWithTitle:(NSString *)title;
-(void)EJSelectMenuButtonWasPressedWithTag:(long)tag;
// button tags start at 100 and increment by one for each
Other configurations:
Change selected button color (default: Purple)
menu.selectedButtonColor = [UIColor blueColor];
Change menu background color (default: White)
menu.menuBackgroundColor = [UIColor redColor];
License:
EEJSelectMenu is released under the MIT license. See LICENSE for details.
*Note that all licence references and agreements mentioned in the EEJSelectMenu README section above
are relevant to that project's source code only.