//
|
// 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
|