Home > ObjCtpl

ObjCtpl

ObjCtpl is a project mainly written in OBJECTIVE-C and C, it's free.

Simple template engine for Objective-C


/ `/ / ` / _ /_
/ _ /_ /_ , ___//
'`/ // / / '`
_ L L _ L _ _____ ,/ ___/ ,//___ ///_// _ /_/ // / /__/ __/ _
/_
/ /_/

This project attempts to recreate the functionality given by Jtpl (http://jtpl.sourceforge.net/).

How to use: You only need the following files in your project to use ObjCtpl:

  • ObjCtplParser (.h and .m)
  • ObjCtplBlock (.h and .m)

Make sure the following is in the file you are going to be parsing with:

include ObjCtpl.h

Then setup your instance of the class: ObjCtplParser *p = [[ObjCtplParser alloc] initWithHTML:HTML_STRING];

Next set your variables: [p setVar:@"WEBSITE" withValue:@"www.google.com"]; [p setVar:@"NAME" withValue:@"test name"]; [p setVar:@"EMAIL" withValue:@"[email protected]"]

And then parse the blocks: [p parse:@"main.email"]; [p parse:@"main.phone"]; [p parse:@"main.website"]; [p parse:@"main"];

To retrieve the completed output, call: [p output]

IMPORTANT: The beginning and end block syntax included in the HTML template IS dependant on whitespace.

Searching via regular expressions is only available in iOS 3.2 or higher, so to allow more compatability I am not using that function as of now.

Previous:Fed