WXPPickerView.h 697 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // PickerView.h
  3. // Hu8huWorker
  4. //
  5. // Created by xiaopeng on 2017/4/24.
  6. // Copyright © 2017年 王小朋. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol PickerViewOneDelegate <NSObject>
  10. @optional
  11. - (void)PickerViewOneDelegateOncleck:(NSInteger)index;
  12. - (void)PickerViewRightButtonOncleck:(NSInteger)index;
  13. @end
  14. @interface WXPPickerView : UIView
  15. - (instancetype)initWithFrame:(CGRect)frame midArry:(NSMutableArray *)midArry;
  16. @property (nonatomic, assign) id<PickerViewOneDelegate>delegate;
  17. -(void)show;
  18. -(void)close;
  19. @property (nonatomic, copy) NSString *isTitle;
  20. @property (nonatomic, copy) NSString *title;
  21. @property (nonatomic, copy) NSString *rightBtnTitle;
  22. @end