1234567891011121314151617181920212223242526 |
- //
- // FKWindowViewManager.h
- // FirstLink
- //
- // Created by ascii on 16/4/9.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKWindowViewManager : NSObject
- + (FKWindowViewManager *)sharedManager;
- - (void)forceShowFloatView:(UIView*)view;
- - (void)appendFloatView:(UIView*)view;
- - (void)showFloatView:(UIColor*)bgColor;
- - (void)closeFloatView;
- - (BOOL)isNeedShowRegisterTip;
- - (void)completeShowRegisterTip;
- @end
|