12345678910111213141516171819202122232425262728293031323334 |
- //
- // MengBanView.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/11.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^MBBlock)(NSArray *array);
- @interface MengBanView : UIView
- //就是那种弹出选择框
- /**
- 初始化方法
- @param title 标题(没有传nil)
- @param btnsArr 按钮数组 or 混搭//1,button 2,selcdate 3,textfiled,
- @param block 选中确定回调,回调 @【@“12”,@“23”】
- @param isAllbtn 是否全是button
- @return self
- */
- -(instancetype)initWithTitileStr:(NSString *)title buttonsArray:(NSArray *)btnsArr isAllbtn:(BOOL)isAllbtn block:(MBBlock)block;
- //需要调用以下方法显示
- -(void)showView;
- //自定义内容视图
- //-(instancetype)initWithContentView:(UIView *)contentView;
- @end
|