气泡型弹出菜单
该源码项目是一个气泡型弹出菜单案例,源码LIVBubbleMenu-iOS,LIVBubbleMenu-iOS是一个能够高度自定义的气泡型弹出菜单。能够自定义其中的图片,半径,数量,甚至是动画速度,回弹程度,透明度等等多达十多种的属性。支持点击的delegate方法。效果图:
使用方法:
支持CocoaPods:
pod 'LIVBubbleMenu'
或者复制LIVBubbleMenu文件夹到项目中使用。
#import "LIVBubbleMenu.h"
示例代码:
- (IBAction)moodButtonTapped {
_bubbleMenu = [[LIVBubbleMenu alloc] initWithPoint:self.moodButton.center radius:150 menuItems:_p_w_picpaths inView:self.view];
_bubbleMenu.delegate = self;
_bubbleMenu.easyButtons = NO;
[_bubbleMenu show];
}
- (IBAction)partialButtonTapped:(id)sender {
NSRange range;
range.location = 0;
range.length = 4;
_bubbleMenu = [[LIVBubbleMenu alloc] initWithPoint:self.partialButton.center radius:150 menuItems:[_p_w_picpaths subarrayWithRange:range] inView:self.view];
_bubbleMenu.delegate = self;
_bubbleMenu.easyButtons = NO;
_bubbleMenu.bubbleStartAngle = 0.0f;
_bubbleMenu.bubbleTotalAngle = 180.0f;
[_bubbleMenu show];
}
Delegate方法:
-(void)livBubbleMenu:(LIVBubbleMenu *)bubbleMenu tappedBubbleWithIndex:(NSUInteger)index {
NSLog(@"User has selected bubble index: %tu", index);
}
-(void)livBubbleMenuDidHide:(LIVBubbleMenu *)bubbleMenu {
NSLog(@"LIVBubbleMenu has been hidden");
}
其他初始化方法:
在某个点弹出:
[[LIVBubbleMenu alloc] initWithPoint:CGPointMake(100,100) radius:150 menuItems:array inView:self.view];
在view中间:
LIVBubbleMenu *bubbleMenu = [[LIVBubbleMenu alloc] initCenteredInWindowWithRadius:150 menuItems:p_w_picpaths];
温馨提醒:如果想要用回Demo中那些表情的话记得去Images.xcassets文件夹中去拿哦!
详情请参考Demo或者gitHub上的文档。
×××:http://code.662p.com/view/10082.html
使用方法:
支持CocoaPods:
pod 'LIVBubbleMenu'
或者复制LIVBubbleMenu文件夹到项目中使用。
#import "LIVBubbleMenu.h"
示例代码:
- (IBAction)moodButtonTapped {
_bubbleMenu = [[LIVBubbleMenu alloc] initWithPoint:self.moodButton.center radius:150 menuItems:_p_w_picpaths inView:self.view];
_bubbleMenu.delegate = self;
_bubbleMenu.easyButtons = NO;
[_bubbleMenu show];
}
- (IBAction)partialButtonTapped:(id)sender {
NSRange range;
range.location = 0;
range.length = 4;
_bubbleMenu = [[LIVBubbleMenu alloc] initWithPoint:self.partialButton.center radius:150 menuItems:[_p_w_picpaths subarrayWithRange:range] inView:self.view];
_bubbleMenu.delegate = self;
_bubbleMenu.easyButtons = NO;
_bubbleMenu.bubbleStartAngle = 0.0f;
_bubbleMenu.bubbleTotalAngle = 180.0f;
[_bubbleMenu show];
}
Delegate方法:
-(void)livBubbleMenu:(LIVBubbleMenu *)bubbleMenu tappedBubbleWithIndex:(NSUInteger)index {
NSLog(@"User has selected bubble index: %tu", index);
}
-(void)livBubbleMenuDidHide:(LIVBubbleMenu *)bubbleMenu {
NSLog(@"LIVBubbleMenu has been hidden");
}
其他初始化方法:
在某个点弹出:
[[LIVBubbleMenu alloc] initWithPoint:CGPointMake(100,100) radius:150 menuItems:array inView:self.view];
在view中间:
LIVBubbleMenu *bubbleMenu = [[LIVBubbleMenu alloc] initCenteredInWindowWithRadius:150 menuItems:p_w_picpaths];
温馨提醒:如果想要用回Demo中那些表情的话记得去Images.xcassets文件夹中去拿哦!
详情请参考Demo或者gitHub上的文档。
×××:http://code.662p.com/view/10082.html
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。