Brak opisu

FKWindowViewManager.h 477B

1234567891011121314151617181920212223242526
  1. //
  2. // FKWindowViewManager.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/4/9.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKWindowViewManager : NSObject
  10. + (FKWindowViewManager *)sharedManager;
  11. - (void)forceShowFloatView:(UIView*)view;
  12. - (void)appendFloatView:(UIView*)view;
  13. - (void)showFloatView:(UIColor*)bgColor;
  14. - (void)closeFloatView;
  15. - (BOOL)isNeedShowRegisterTip;
  16. - (void)completeShowRegisterTip;
  17. @end