单军华
2018-04-28 1d39caf7235522ae121db7a188ba41a706217407
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  WenDuPickerView.h
//  GoldRich
//
//  Created by WindShan on 2017/2/16.
//  Copyright © 2017年 WindShan. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface WenDuPickerView : UIView
 
@property (nonatomic, strong)  NSString * titleStr;
@property (nonatomic, strong)  NSString * maxValue;
@property (nonatomic, strong)  NSString * minValue;
@property (nonatomic, strong)  NSString * fromatStr;
@property (nonatomic, strong)  NSString * _wenDuStr;
 
-(instancetype)initWithCompleteBlock:(void(^)(NSString *))completeBlock;
 
-(void)show;
 
@end