Popularity
8.3
Stable
Activity
0.0
Stable
1,920
47
249

Code Quality Rank: L4
Programming language: Objective-C
License: MIT License
Tags: UI     Menu    
Latest version: v1.0.5

KYGooeyMenu alternatives and similar libraries

Based on the "Menu" category.
Alternatively, view KYGooeyMenu alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of KYGooeyMenu or a related project?

Add another 'Menu' Library

README

CocoaPods Version License Platform

带粘性的扇形菜单

Path menu with gooey effectes.

灵感来自这个Dribbble设计:

Inspired by this dribbble:

[](dribble_demo.gif)

下面是实现的效果:

Here is what the repo can do:

1、点击每个具体的菜单可以获得相应的编号,使用时,可以switch这个序号进行想要的后续操作。

1.Tap each menu,you will get the number in the protocol method,so you can switch-case the number to do the later work.

2、可自定义菜单个数。

2.You can customize the number of the menu.

3、可自定义父菜单和子菜单间距。

3.You can customize the distance between super menu and the sub menus.

4、自定义颜色。

4.Customize the theme color.

5、自定义菜单图标。

4.Customize menu icon.

[](gooey.gif)

also,you can set the menu's icon:

[](screenshot.jpg)

Installation

pod 'KYGooeyMenu', '~> 1.0.5'

Usage

Initialize

    gooeyMenu = [[KYGooeyMenu alloc]initWithOrigin:CGPointMake(CGRectGetMidX(self.view.frame)-50, 500) andDiameter:100.0f andDelegate:self themeColor:[UIColor redColor]];
    gooeyMenu.menuDelegate = self;
    gooeyMenu.radius = 100/4;     //这里把小圆半径设为大圆的1/4
    gooeyMenu.extraDistance = 20; //间距设为R+r+20。注:R+r是默认存在的。
    gooeyMenu.MenuCount = 4;      //4个子菜单
    gooeyMenu.menuImagesArray = [NSMutableArray arrayWithObjects:
        [UIImage imageNamed:@"tabbarItem_discover highlighted"],
        [UIImage imageNamed:@"tabbarItem_group highlighted"],
        [UIImage imageNamed:@"tabbarItem_home highlighted"],
        [UIImage imageNamed:@"tabbarItem_message highlighted"],
        [UIImage imageNamed:@"tabbarItem_user_man_highlighted"], nil];

implement protocol method

-(void)menuDidSelected:(int)index{
    NSLog(@"选中第%d",index);
}

That's it! Enjoy!

版本

Version

v2.0.0

I'm sorry to tell you that the version 2.0.0 is under testing. So if you download the newest repo, you will see the test version2.0.0(not finished yet)by default. If you want to check the former version, just open the version1's code in the project.

v1.0.5

增加自定义背景图。Add custom meun icon.

v1.0.4

隐藏Menu时,背后的子菜单也会消失。When you hide the menu,the sub-menu in the back will also hide.

License

This project is under MIT License. See LICENSE file for more information.


*Note that all licence references and agreements mentioned in the KYGooeyMenu README section above are relevant to that project's source code only.