// // PickerView.h // Hu8huWorker // // Created by xiaopeng on 2017/4/24. // Copyright © 2017年 王小朋. All rights reserved. // #import @protocol PickerViewOneDelegate @optional - (void)PickerViewOneDelegateOncleck:(NSInteger)index; - (void)PickerViewRightButtonOncleck:(NSInteger)index; - (void)PickerViewCloseButtonOncleck; @end @interface WXPPickerView : UIView - (instancetype)initWithFrame:(CGRect)frame midArry:(NSMutableArray *)midArry; @property (nonatomic, assign) iddelegate; -(void)show; -(void)close; @property (nonatomic, copy) NSString *isTitle; @property (nonatomic, copy) NSString *title; @property (nonatomic, copy) NSString *rightBtnTitle; @property (assign , nonatomic) BOOL isShow; @end