// // FKCouponSelectView.h // FirstLink // // Created by jack on 16/8/21. // Copyright © 2016年 FirstLink. All rights reserved. // #import @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