// // MengBanView.h // LNManager // // Created by EchoShacolee on 2017/4/11. // Copyright © 2017年 lee. All rights reserved. // #import typedef void(^MBBlock)(NSArray *array); @interface MengBanView : UIView //就是那种弹出选择框 -(instancetype)initWithTitileStr:(NSString *)title buttonsArray:(NSArray *)btnsArr block:(MBBlock)block; -(void)showView; //自定义内容视图 //-(instancetype)initWithContentView:(UIView *)contentView; /**默认选中按钮*/ - (void)setSection:(NSInteger)section defaultIndex:(NSInteger)index; @end