views:

456

answers:

1

Hi All, Previously i had a doubt regarding the Parsing XML. thanks for all for giving me help to clear that.

Now i need to load the data which i parsed from the XML in to a table view. can any one help me in that.

[What i need is to load the courses which a student enrolls. the xml file is created based on the login query.]

Thanks in advance Shibin

+1  A: 

To display data in UITableView you must set its delegate and datasource properties to an object that implements UITableViewDelegate and UITableViewDataSource protocols. Look reference docs for details.

There's also TableViewSuite sample on apple site.

Vladimir