//
// IPUTemplateManager.h
// IPUMobile
//
// Created by 秋林 on 2019/1/15.
// Copyright © 2019 Asiainfo. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <IPUFoundation/IPUFoundation.h>
#import "IPUAppPathManager.h"
#import "IPUMobileConfig.h"
#import "IPUFileUtil.h"
#import "IPUTemplateDownLoader.h"
@interface IPUTemplateManager : NSObject
+ (id)getEngine;
+ (void)setTemplateBasePath:(NSString *)basePath;
+ (NSString *)getTemplateFullPath:(NSString *)relativePath;
+ (void)downloadResourceOnView:(UIViewController *)view callback:(DownloadComplete)callback;
/**
初始化资源文件加密
@param resKey <#resKey description#>
*/
+ (void)initResKey:(NSString *)resKey;
+ (NSString *)getResKey;
@end
|