Did you change the view to the table view? Is the tableview's rows are updated correctly?
karim
2010-08-18 12:29:53
Did you change the view to the table view? Is the tableview's rows are updated correctly?
Your xml data won't automatically show up on a table view by reloading it. Your xml parser will have to get the data into an array (of string values, dictionaries or objects etc).
Your view controller needs to implement the table view delegate and data source methods in which you'll have to populate each cell in the table. To learn how to use a table view check TableViewSuite code sample.