No Description

SubmitDiscountPickView.h 544B

12345678910111213141516171819202122
  1. //
  2. // SubmitDiscountPickView.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/6/20.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SubmitDiscountPickView : UIView
  10. @property (nonatomic, strong, readonly) UIPickerView *pickerView;
  11. @property (nonatomic, copy) void(^selectDone)(NSInteger selectedIndex);
  12. - (void)showInView:(UIView *)view animated:(BOOL)animated;
  13. - (void)refreshTitleArray:(NSArray *)titleArray withSelectedIndex:(NSInteger)index;
  14. - (void)dismissAnimated;
  15. - (BOOL)isShowing;
  16. @end