// // FKBuyRemindView.h // FirstLink // // Created by jack on 15/9/17. // Copyright (c) 2015年 FirstLink. All rights reserved. // #import @class FKBuyRemindView; @protocol FKBuyRemindViewDelegate @optional - (void)remindViewClickToBuy:(FKBuyRemindView *)remindView; - (void)remindViewClickToRemind:(FKBuyRemindView *)remindView; @end @interface FKBuyRemindView : UIView @property (nonatomic, assign) BOOL isVip; @property (nonatomic, weak) id delegate; - (void)showInView:(UIView *)view; @end