| 1234567891011121314151617181920212223 |
- //
- // popMenuView.h
- // popViewDemo
- //
- // Created by GG on 2019/1/15.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface popMenuView : UIView
- //自定义一个弹出视图
- +(void)addPopTableViewSelectWithFrame:(CGRect)frame
- selectData:(NSArray *)select
- images:(NSArray *)leftImage action:(void(^)(NSInteger index))action animation:(BOOL)animaton;
- /**
- *设置手动隐藏
- */
- +(void)hiden;
- @end
|