1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| //
| // PBOneChooseView.h
| // IphoneBIMe
| //
| // Created by zjf on 2018/12/19.
| // Copyright © 2018 ProBIM. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
| @class PBExamineAddModel;
|
| @interface PBOneChooseView : UIView
| @property (nonatomic, assign) NSInteger visualViewHeight;
| @property (nonatomic, copy) void(^ChooseCompleteBlock)(BOOL isSelect);
| @property (nonatomic, strong) PBExamineAddModel *examineAddModel;
| @property (nonatomic, strong) NSArray *dataArr;
| - (void)show;
| @end
|
|