使用模板引擎渲染HTML界面
by 伍雪穎
模板引擎:GRMustache
pod 'GRMustache' , '~> 7.3.0'
html模板:
template.html
{{ content }}
調(diào)用:
- ( 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怎么學(xué)習(xí)?HTML怎么入門?HTML在哪學(xué)?HTML怎么學(xué)才快?不用擔(dān)心,這里為大家提供了HTML速學(xué)教程(入門課程),有需要的小伙伴保存下載就能學(xué)習(xí)啦!
微信掃碼
關(guān)注PHP中文網(wǎng)服務(wù)號
QQ掃碼
加入技術(shù)交流群
Copyright 2014-2025 http://www.miracleart.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號