123456789101112131415161718192021 |
- //
- // FKCouponSelectView.h
- // FirstLink
- //
- // Created by jack on 16/8/21.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FKCouponSelectView : UIView
- @property (nonatomic, copy) void(^finish)(NSString *couponID);
- - (void)refreshCouponArray:(NSArray *)couponArray selectFirst:(BOOL)selectFirst;
- - (void)showInView:(UIView *)view animated:(BOOL)animated;
- - (BOOL)isShowing;
- - (void)dismissAnimated;
- @end
|