STBaseSuspensionWindow.h 596 B

1234567891011121314151617181920
  1. //
  2. // STBaseSuspensionWindow.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/1/18.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface STBaseSuspensionWindow : UIWindow
  10. @property (strong,nonatomic)UITapGestureRecognizer *tapGestureRecognizer; //tap手势
  11. @property (strong,nonatomic)UIPanGestureRecognizer *panGestureRecognizer; //pan手势
  12. @property (assign,nonatomic)CGFloat stSuspensionWindowLevelValue;//基础悬浮widnow的等级
  13. - (void)showPanClickForSTWindowOfPoint:(CGPoint)panPoint andMovePoint:(CGPoint)movePoint;
  14. @end