Skip to content

mountainpaw/JCMenu

This branch is up to date with karthikeyanvijayan/JCMenu:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

326b96b · Nov 7, 2013

History

18 Commits
Oct 21, 2013
Nov 7, 2013
Oct 20, 2013
Oct 20, 2013
Oct 30, 2013
Oct 21, 2013

Repository files navigation

JCMenu

JCMenu is an expanded menu.

Screenshot

Installation

  • Add JCMenu folder in your project
  • Import JCMenuItem.h JCMenu.h
  • Use it !

Use

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];

Appearance

@property(nonatomic, strong)   UIColor        *menuTintColor;       

TODO

  • More customization
  • Different menu position
  • Highlight work
  • Animation
  • ...

Contact

jeanbaptiste.castro@gmail.com

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%