12345678910111213141516171819202122 |
- //
- // SubmitDiscountPickView.h
- // FirstLink
- //
- // Created by jack on 15/6/20.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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
|