Hello all, I'm new in iPhone Application Programming. I can't get value from XML file and display it in UITableView. I need to get the name value of animal. How is the simple way to parse XML without attribute? I've been read NSXMLParser Documentation but the data is not displayed in my UITableView.
Here is my XML file :
<Employees>
<Employee>
<Emp_Code>1</Emp_Code>
<Emp_Name>Arun</Emp_Name>
<Emp_Salary>17750</Emp_Salary>
</Employee>
<Employee>
<Emp_Code>2</Emp_Code>
<Emp_Name>Raja</Emp_Name>
<Emp_Salary>18050</Emp_Salary>
</Employee>
</Employees>
how i convert and use in my project please suggest me.