1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| //
| // PBScreeningView.h
| // IphoneBIMe
| //
| // Created by zjf on 2020/9/7.
| // Copyright © 2020 ProBIM. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
| @protocol ExamineMenuViewDelegate <NSObject>
| - (void)RightMenuViewClick:(NSInteger)tag;
| @end
| @interface PBScreeningView : UIView
| @property (nonatomic ,weak) id <ExamineMenuViewDelegate> customDelegate;
| @property (nonatomic, strong) NSArray *typeArr;
| @property (nonatomic, copy) void (^determineBlock)(NSString *related_guid, NSString *level_guid, NSString *state_guid, NSString *type_guid);
| @end
|
|