TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
A lightweight Template Engine for Objective-C (with ARC feature required).
Template ->
hello {{ name }},
you have just won {{ value}} !
please visit {{ site }} immediately.
with given hash ->
{
"name": "steve",
"value": "$100000",
"site": "www.cheatyouforever.com"
}
will produce ->
hello steve,
you have just won $100000 !
please visit www.cheatyouforever.com immediately.
That's all. No other features are supported.
Add pod 'CCTemplate'
on your Podfile to get CCTemplate up-to-date.
#import "CCTemplate.h"
CCTemplate* engine = [[CCTemplate alloc] init];
NSString* template = @"hello world {{name}}";
id dict = @{@"name":@"xhan"};
NSString*result = [engine scan:template dict:dict];
// or just call nsstring category method
result = [template templateFromDict:dict];
@gearoidoceallaigh