|
//
// IPUTemplateWebView.h
// IPUMobile
//
// Created by 秋林 on 2019/1/15.
// Copyright © 2019 Asiainfo. All rights reserved.
//
#import "IPUMobileWebView.h"
NS_ASSUME_NONNULL_BEGIN
@class IPUDataMap;
@interface IPUTemplateWebView : IPUMobileWebView <IPUWebViewProtocol, IPUCallbackProtocol>
{
NSURL *baseUrl;
}
- (void)setBaseUrl:(nullable NSString *)basePath;
- (void)loadTemplate:(NSString *)filePath data:(IPUDataMap *)data;
- (NSString *)getTemplate:(NSString *)filePath data:(IPUDataMap *)data;
@end
NS_ASSUME_NONNULL_END
|