JCMenu is an expanded menu.
- Add
JCMenufolder in your project - Import
JCMenuItem.hJCMenu.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
- ...
