JCMenu is an expanded menu.
- Add
JCMenu
folder in your project - Import
JCMenuItem.h
JCMenu.h
- Use it !
Add items :
JCMenuItem *item1 = [[JCMenuItem alloc] initWithImage:image action:^(JCMenuItem *item){
NSLog(@"Item 1");
}];
Create menu :
JCMenu *menu = [[JCMenu alloc] initWithFrame:frame items:@[item1, ...]];
[self.view addSubview:menu];
@property(nonatomic, strong) UIColor *menuTintColor;
- More customization
- Different menu position
- Highlight work
- Animation
- ...