// // SubmitDiscountPickView.h // FirstLink // // Created by jack on 15/6/20. // Copyright (c) 2015年 FirstLink. All rights reserved. // #import @interface SubmitDiscountPickView : UIView @property (nonatomic, strong, readonly) UIPickerView *pickerView; @property (nonatomic, copy) void(^selectDone)(NSInteger selectedIndex); - (void)showInView:(UIView *)view animated:(BOOL)animated; - (void)refreshTitleArray:(NSArray *)titleArray withSelectedIndex:(NSInteger)index; - (void)dismissAnimated; - (BOOL)isShowing; @end