| 123456789101112131415161718192021222324252627282930313233 |
- //
- // HomeRootVC.h
- // MingMen
- //
- // Created by 罗云飞 on 2017/3/10.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- // 首页
- #import <UIKit/UIKit.h>
- @interface PellTableViewSelect : UIView
- /**
- * 创建一个弹出下拉控件
- *
- * @param frame 尺寸
- * @param selectData 选择控件的数据源
- * @param action 点击回调方法
- * @param animate 是否动画弹出
- */
- + (void)addPellTableViewSelectWithWindowFrame:(CGRect)frame
- selectData:(NSArray *)selectData
- images:(NSArray *)images
- action:(void(^)(NSInteger index))action animated:(BOOL)animate;
- /**
- * 手动隐藏
- */
- + (void)hiden;
- @end
|