Xcode - output (array) in *.html file possible?

230 Views Asked by At

Is it possible to implement a Xcode array to a *.html file?

The *.html is a local file in my app. The output is a normal UiWebView.

<Doctype>
<html>
some text [myXcodeArray] some text
</html>

I would like to save a TextInput in Xcode. This array should be the output in the *.html - Is that possible?

1

There are 1 best solutions below

2
On

You need to be a bit more explicit about what you're trying to accomplish here. So you have an array in objective-c and you're trying to dump the content of that array into an HTML file that resides within your app?

If that's the case, just simply iterate through your array and dump the elements to the file. Try using KissXML to generate the XML as needed. If you need to parse the HTML have a look at Ben Reeves HTML Parser.