码迷,mamicode.com
首页 > 移动开发 > 详细

iOS-一个弹出菜单动画视图开源项目分享

时间:2016-03-31 11:08:28      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:

类似于Tumblr发布按钮的弹出视图
使用很简单:

初始化:

@property (nonatomic, strong) XWMenuPopView *myMenuPopView;

- (void)viewDidLoad {
    [super viewDidLoad];
 //将弹出菜单视图添加到主视图
    _myMenuPopView = [[XWMenuPopView alloc] initWithFrame:self.view.frame];
    [_myMenuPopView setMenuPopDelegate:self];
    [self.view addSubview:_myMenuPopView];
  }

使用:


#pragma mark - 弹出菜单监听方法
-(void)ShowMenuPopView:(UIButton *)menuPopBtn {
    [_myMenuPopView showMenu];
}

代理

#pragma mark - MenuPopDelegate 代理方法
-(void)XWMenuPopView:(XWMenuPopView *)MenuPopView didSelectedMenuIndex:(NSInteger)selectedIndex{
    NSLog(@"->>didSelectedMenuIndex->>点击的是第%ld个按钮",selectedIndex);
}

备注两点:
/* 如果弹出视图不是在最前端显示,可以 /
// [self.view bringSubviewToFront:_myMenuPopView];
//如果弹出视图是在自定义UITabBarController封装的控制器,需要将 XWMenuPopView 添加在UITabBarController 子视图中

源文件下载:
https://github.com/qxuewei/XWMenuPopView

iOS-一个弹出菜单动画视图开源项目分享

标签:

原文地址:http://blog.csdn.net/qxuewei/article/details/51017696

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!