commit | author | age
|
dcdc07
|
1 |
// |
W |
2 |
// WAHupProxy.h |
|
3 |
// WASdkIntfUI |
|
4 |
// |
|
5 |
// Created by wuyx on 16/3/2. |
|
6 |
// Copyright © 2016年 GHW-T-01. All rights reserved. |
|
7 |
// |
|
8 |
|
|
9 |
#import <Foundation/Foundation.h> |
|
10 |
@class WAUpdateInfo; |
|
11 |
/*! |
|
12 |
@discussion WAHupProxy 该类为热更新的代理类。 |
|
13 |
- - - |
|
14 |
*/ |
|
15 |
@interface WAHupProxy : NSObject |
|
16 |
/*! |
|
17 |
@abstract 检查更新 |
|
18 |
@param handler 回调 |
|
19 |
*/ |
|
20 |
+(void)checkUpdate:(void(^)(NSError* error,WAUpdateInfo* updateInfo))handler; |
|
21 |
/*! |
|
22 |
@abstract 开始更新 |
|
23 |
@param handler 回调 |
|
24 |
*/ |
|
25 |
+(void)startUpdate:(WAUpdateInfo*)updateInfo handler:(void(^)(NSError* error))handler; |
|
26 |
/*! |
|
27 |
@abstract 获取更新包信息 |
|
28 |
@return WAUpdateInfo 更新包信息 |
|
29 |
*/ |
|
30 |
+(WAUpdateInfo*)getPatchInfo; |
|
31 |
@end |