Geen omschrijving

FKBuyRemindView.h 558B

123456789101112131415161718192021222324252627
  1. //
  2. // FKBuyRemindView.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/9/17.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class FKBuyRemindView;
  10. @protocol FKBuyRemindViewDelegate <NSObject>
  11. @optional
  12. - (void)remindViewClickToBuy:(FKBuyRemindView *)remindView;
  13. - (void)remindViewClickToRemind:(FKBuyRemindView *)remindView;
  14. @end
  15. @interface FKBuyRemindView : UIView
  16. @property (nonatomic, assign) BOOL isVip;
  17. @property (nonatomic, weak) id <FKBuyRemindViewDelegate> delegate;
  18. - (void)showInView:(UIView *)view;
  19. @end