Ios Code To Import Xml Files From Web And Display In Table

I need some iOS code to import 4 XML files from the web and display each in a table view.

Each file imported to be displayed on a separate tab on one screen.

Each table line item to be clickable and to display the relevant details on a second screen.

Each XML file will be in the following format

<BLIST>
<PRODUCT>
<IT>ItemIT</IT>
<RT>ItemRT</RT>
<TE>ItemTE</TE>
<PT>ItemPT</PT>
<AP>ItemAP</AP>
<LT>ItemLT</LT>
<TO>ItemTO</TO>
</PRODUCT>
</BLIST>

Initial table view to display RT, TE LT
Second screen to show all details.

Code to be written in XCODE 4 and all code will be imported into an existing application.

Leave a Reply

Your email address will not be published. Required fields are marked *