开发者

How can I populate UITableView with XML?

开发者 https://www.devze.com 2023-01-05 21:00 出处:网络
I have a tab bar application. In one of my tabs, there is a search bar and a table view below that. When you enter something into the search bar, it returns parsed xml. I need to put this parsed infor

I have a tab bar application. In one of my tabs, there is a search bar and a table view below that. When you enter something into the search bar, it returns parsed xml. I need to put this parsed information into the tableview below. The class inherits from UIViewController. I declared a UITableView object in the header file and linked it in interface builder, and adopted th开发者_运维技巧e UITableViewDelegate protocol.

I'm not sure If i'm going about this the correct way. Any help?


That sounds about right. You will need to also have your UIViewController implement UITableViewDataSource, and add the methods from that protocol to populate the table.


There are various tutorials available which guide you step-by-step to create a simple tablview. Google them. You can follow these steps for connecting your tableView outlets:

  1. Select your viewController where you are displaying the tableview to be your "File's Owner" in Identity Inspector.

  2. Drag your view's outlet to your File's owner.

  3. For tableView inside view, drag its outlets to File's owner again so that your datasource and delegates are up. And in the same view, drag your referencing outlet to the IBOutlet you have created in your viewController class.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号