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