STPromptView.h 667 B

12345678910111213141516171819202122
  1. //
  2. // STPromptView.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/3/14.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "STBaseView.h"
  10. @protocol STPromptViewDelegate <NSObject>
  11. @optional
  12. -(void)showBackRemoveSTPromptView;
  13. @end
  14. @interface STPromptView : STBaseView<UIGestureRecognizerDelegate>
  15. @property (weak, nonatomic) IBOutlet UIImageView *promptBgImgView;
  16. @property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
  17. @property (weak, nonatomic) IBOutlet UIView *promptView;
  18. @property(nonatomic,strong)UITapGestureRecognizer *tapGestureRecognizer;
  19. @property(nonatomic,weak)id<STPromptViewDelegate>delegate;
  20. @end