//
|
// PBTwoChooseView.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2018/12/24.
|
// Copyright © 2018 ProBIM. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
@class PBExamineAddModel;
|
|
@interface PBTwoChooseView : UIView
|
@property (nonatomic, assign) NSInteger visualViewHeight;
|
@property (nonatomic, copy) void(^ChooseCompleteBlock)(BOOL isSelectLeft, BOOL isSelectRight);
|
@property (nonatomic, assign) NSInteger index;
|
@property (nonatomic, strong) PBExamineAddModel *leftExamineAddModel;
|
@property (nonatomic, strong) PBExamineAddModel *rightExamineAddModel;
|
@property (nonatomic, strong) NSArray *leftData;
|
@property (nonatomic, strong) NSArray *rightData;
|
|
- (void)show;
|
@end
|