您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
该源码项目是一个气泡型弹出菜单案例,源码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 |
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。