PellTableViewSelect.h 758 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // HomeRootVC.h
  3. // MingMen
  4. //
  5. // Created by 罗云飞 on 2017/3/10.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. // 首页
  9. #import <UIKit/UIKit.h>
  10. @interface PellTableViewSelect : UIView
  11. /**
  12. * 创建一个弹出下拉控件
  13. *
  14. * @param frame 尺寸
  15. * @param selectData 选择控件的数据源
  16. * @param action 点击回调方法
  17. * @param animate 是否动画弹出
  18. */
  19. + (void)addPellTableViewSelectWithWindowFrame:(CGRect)frame
  20. selectData:(NSArray *)selectData
  21. images:(NSArray *)images
  22. action:(void(^)(NSInteger index))action animated:(BOOL)animate;
  23. /**
  24. * 手动隐藏
  25. */
  26. + (void)hiden;
  27. @end