1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| //
| // WAApwProxy.h
| // WASdkIntfUI
| //
| // Created by GHW-T-01 on 16/3/1.
| // Copyright © 2016年 GHW-T-01. All rights reserved.
| //
|
| #import <Foundation/Foundation.h>
| /*!
| @discussion WAApwProxy
| - - -
| */
| @interface WAApwProxy : NSObject
| /*!
| @abstract 显示浮动按钮
| */
| +(void)showEntryFlowIcon;
| /*!
| @abstract 隐藏浮动按钮
| */
| +(void)hideEntryFlowIcon;
|
| @end
|
|