MengBanView.h 572 B

1234567891011121314151617181920212223242526
  1. //
  2. // MengBanView.h
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/11.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^MBBlock)(NSArray *array);
  10. @interface MengBanView : UIView
  11. //就是那种弹出选择框
  12. -(instancetype)initWithTitileStr:(NSString *)title buttonsArray:(NSArray *)btnsArr block:(MBBlock)block;
  13. -(void)showView;
  14. //自定义内容视图
  15. //-(instancetype)initWithContentView:(UIView *)contentView;
  16. /**默认选中按钮*/
  17. - (void)setSection:(NSInteger)section defaultIndex:(NSInteger)index;
  18. @end