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

iOS 使用GRMustache对HTML页面进行渲染

时间:2016-04-06 15:10:56      阅读:1020      评论:0      收藏:0      [点我收藏+]

标签:

第三方控件[GRMustanche] 

OC 

Swift 

//测试版本 7.3.2

最终效果图:

技术分享

 

 

【使用方法&& 核心代码】

通过cocoapods 导入

#import <GRMustache.h>

 

- (NSString *) testFormatWithName: (NSString *) name value: (NSString *) vaue {

    NSString * fileName = @"test.html";

    //获取完整的html 文件路径  带后缀名

    NSString * path = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent: fileName];

     //编码

    NSString * template = [NSString stringWithContentsOfFile: path encoding: NSUTF8StringEncoding error: nil];

    NSDictionary * renderObject = @{@"name": name, @"content": vaue};

    NSString * content = [GRMustacheTemplate renderObject: renderObject fromString: template error: nil];

    return  content;

}

NSString * htmlstr = [self testFormatWithName: @"王晓明" value: @"你好"];

   [self.webView loadHTMLString: htmlstr baseURL: nil];

 

 

[DEMO 地址] (提取码:b3e0)

 

iOS 使用GRMustache对HTML页面进行渲染

标签:

原文地址:http://www.cnblogs.com/qzp2014/p/5359214.html

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