I am beginner in iPhone development. I want to parse xml webservice in UITableView which will show Result given in image file. How is it possible? Please anybody provide any help how will I display that type of result in my table view.
I am beginner in iPhone development. I want to parse xml webservice in UITableView
Share
Start with NSXMLParser. Its a SAX parser. You will need to implement the delegate methods to fetch data and attributes from the XML. There are tons of blogs and tutorial explaining how to parse using NSXMLParser.