PickerView.h 656 B

123456789101112131415161718192021222324
  1. //
  2. // PickerView.h
  3. // TCXF
  4. //
  5. // Created by 张毅成 on 2017/7/6.
  6. // Copyright © 2017年 张毅成. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^PickerViewBlock)(NSString *string,NSInteger selectIndex);
  10. @interface PickerView : UIPickerView<UIPickerViewDelegate,UIPickerViewDataSource>
  11. @property (nonatomic, assign) NSInteger selectIndex;
  12. @property (strong, nonatomic) UIToolbar *toolBar;
  13. @property (copy, nonatomic) PickerViewBlock block;
  14. @property (strong, nonatomic) NSString *title;
  15. @property (nonatomic, strong) NSArray *supotdataSource;
  16. - (void)showView;
  17. - (void)showinView:(UIView *)view;
  18. - (void)pickerViewDisappear;
  19. @end