码迷,mamicode.com
首页 > Web开发 > 详细

使用模板引擎渲染HTML界面

时间:2015-01-14 09:47:01      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:ios   webview   

使用模板引擎渲染HTML界面

by 伍雪颖

模板引擎:GRMustache
pod ‘GRMustache‘, ‘~> 7.3.0‘

html模板:
template.html
<HTML>
<HEAD>
</HEAD>
<BODY>
<H1> {{ name }} </H1>
<P> {{ content }} </P>
</BODY>
</HTML>

调用:
- (void)viewDidLoad {
    [super viewDidLoad];
   
NSString *path = [[NSBundle mainBundle] bundlePath];
   
NSURL *baseUrl = [NSURL fileURLWithPath:path];
   
NSString *htmlString = [self demoFormatWithName:@"wuxueying" value:@"hello"];
    [
self.webView loadHTMLString:htmlString baseURL:baseUrl];
}

- (
NSString *)demoFormatWithName:(NSString *)name value:(NSString *)value {
   
NSString *fileName = @"template.html";
   
NSString *path = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:fileName];
   
NSString *template = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
   
NSDictionary *renderObject = @{@"name":name,@"content":value};
   
NSString *content = [GRMustacheTemplate renderObject:renderObject fromString:template error:nil];
   
return content;
}

效果:
技术分享

使用模板引擎渲染HTML界面

标签:ios   webview   

原文地址:http://blog.csdn.net/rainlesvio/article/details/42705267

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!