In my app, I want to replace some variables inside an html file when it goes to an UIWebView. The file is local. For example, I add a variable $userName$ and then I would replace that with @"John".
Would I have to read the file in as string, and then perform some string replacement action?