//
|
// PBChooseView.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2018/8/15.
|
// Copyright © 2018年 ProBIM. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
@class PBIssueAddModel;
|
@interface PBChooseView : UIView
|
@property (nonatomic, assign) NSInteger visualViewHeight;
|
@property (nonatomic, copy) void(^ChooseCompleteBlock)(BOOL isSelectStatus, BOOL isSelectType);
|
@property (nonatomic, assign) NSInteger index;
|
@property (nonatomic, strong) PBIssueAddModel *leftIssueAddModel;
|
@property (nonatomic, strong) PBIssueAddModel *rightIssueAddModel;
|
@property (nonatomic, strong) NSDictionary *statusAndTypeData;
|
@property (nonatomic, assign) BOOL isAdd;
|
- (void)show;
|
@end
|