// // PBTimeChooseView.h // IphoneBIMe // // Created by zjf on 2018/12/26. // Copyright © 2018 ProBIM. All rights reserved. // #import @class PBExamineAddModel; @interface PBTimeChooseView : 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, assign) BOOL isAddRecord; - (void)show; @end