MGTemplateEngine 模版引擎簡單使用(轉)

原文:http://blog.csdn.net/crazy_srufboy/article/details/21748995css

要實現的效果html

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  首先上圖中間的 標題至內容 都是使用UIWebView顯示,評論是UITableView能夠往下拖加載更多評論,也能夠增長評論同刪除評論。web

動機數組

       評細頁中使用 UIWebView 會使顯示內容更加的靈活和簡單,固然你也許能夠網上找UITextView的擴展一樣也行,但我感受HTML更符合個人需求。在多年的PHP開發中咱們知道,其實詳細頁都是大同小異,主要是顯示的內容風格不一樣。但在iOS平臺上,作這些拼拼接接的活很累也不易於維護,還要不斷計算各類類型頁面對象的位置,實在吃力不討好。使用UIWebView將是一個不錯的選擇。xcode

MGTemplateEngine 模版引擎
網站

     MGTemplateEngine比較象 PHP 中的 Smarty 模版引擎,是一個輕量級的引擎,簡單好用。只要設置不少不一樣的HMTL模版,就能輕鬆的實現一個View多種內容格式的顯示,對於不熟悉HTML或者減輕工做量而言,把這些工做讓設計分擔一下仍是很好的,也比較容易實現設計想要的效果。lua

    首先,看看模版的代碼spa

[html]  view plain  copy
 
 在CODE上查看代碼片派生到個人代碼片
  1. <!DOCTYPE html>  
  2. <html lang="en">  
  3.   <head>  
  4.     <meta charset="utf-8">  
  5.     <title></title>  
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">  
  7.     <link href="./detail.css" rel="stylesheet">  
  8.   </head>  
  9.   <body>  
  10.   <div id='container' name="container">  
  11.     <div class="title">{{ title }}</div>  
  12.     <div class="date">{{ date }}</div>  
  13.     <div class="content">{{ content }}</div>  
  14.   </div>  
  15.   </body>  
  16. </html>  

 Objective-C代碼 - 下面的建立代碼MGTemplateEngine都是從官方的例子中參考下來的,已經有很詳細的說明.net

[objc]  view plain  copy
 
 在CODE上查看代碼片派生到個人代碼片
  1. // Set up template engine with your chosen matcher.  
  2. MGTemplateEngine *engine = [MGTemplateEngine templateEngine];  
  3. //[engine setDelegate:self];  
  4. [engine setMatcher:[ICUTemplateMatcher matcherWithTemplateEngine:engine]];  
  5.   
  6. // 這裏就是設置,或者裏邊塞變量的地方。其實也能夠設置一個數組,這樣模板的靈活也會更強。這裏我就不演示了官方有例子  
  7. [engine setObject:self.detailData[@"title"] forKey:@"title"];  
  8. [engine setObject:self.detailData[@"content"] forKey:@"content"];  
  9.   
  10. // MGTemplateEngine/Detail/detail.html  
  11. // MGTemplateEngine/Detail/detail.css  
  12. NSString *templatePath = [[NSBundle mainBundle] pathForResource:@"detail" ofType:@"html"];  
  13.   
  14. // Process the template and display the results.  
  15. NSString *html = [engine processTemplateInFileAtPath:templatePath withVariables:nil];  
  16.   
  17.   
  18. // 得到HTML  
  19. self.htmlWebView = [[UIWebView alloc] initWithFrame:CGRectMake(8, 5, 304, 320)];  
  20. self.htmlWebView.delegate = self;  
  21. self.htmlWebView.userInteractionEnabled = NO;  
  22.   
  23. // 你就能加載到HTML裏面的.css文件  
  24. NSString *baseURL = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"Detail"];  
  25. [self.htmlWebView loadHTMLString:html baseURL:[NSURL fileURLWithPath:baseURL]];  
  26. [self.detailView addSubview:self.htmlWebView];  

    由於個人UIWebView是在插入到UITableView,因此在UIWebView加載完後,就得從新計算高度。由於我想讓用戶感受不到這實際上是一個HTML。 設計

[objc]  view plain  copy
 
 在CODE上查看代碼片派生到個人代碼片
  1. // 我將UIWebView添加到了self.detailView  
  2. self.listTableView.tableHeaderView = self.detailView;  
[objc]  view plain  copy
 
 在CODE上查看代碼片派生到個人代碼片
  1. #pragma mark -  
  2. #pragma mark -# UIWebViewDelegate  
  3.   
  4. - (void)webViewDidFinishLoad:(UIWebView *)webView {  
  5.   
  6.     // 獲取整個HMTL的高度,這很好理解,很簡單的JS  
  7.     NSString *heightString = [self.htmlWebView stringByEvaluatingJavaScriptFromString:@"document.getElementById(\"container\").offsetHeight;"];  
  8.       
  9.     // 重設view內容大小  
  10.     CGRect nFrame = self.detailView.frame;  
  11.     nFrame.size.height = [heightString doubleValue] + 35.0;  
  12.     self.detailView.frame = nFrame;  
  13.   
  14.     // 重設webview內容大小  
  15.     CGRect nWebViewFrame = self.htmlWebView.frame;  
  16.     nWebViewFrame.size.height = [heightString doubleValue] + 15;  
  17.     self.htmlWebView.frame = nWebViewFrame;  
  18.   
  19.     // 讓UIWebView加載完後,才設置UITableView,最後才加載評論  
  20.     [self tableViewSetting];  
  21.     [self getCommentList];  
  22. }  

 以上的都是 MGTemplateEngine 很基本的使用,未來也會大派用場的。對於內容頁的顯示,沒有比HTML來的更方便直接,經過切換模版和簡單的參數設置,多個不一樣類型的欄目也可使用同一個詳細頁,很大程度上減輕工做理和易於維護。

    要更深刻的瞭解,能夠去 MGTemplateEngine 官方網站

相關文章
相關標籤/搜索