Refresh button in ios

1.8k Views Asked by At

How to add a refresh button in uitableview with refresh image? I have a xml data neede to be parsed in table and load the upcoming data using the offset value of the xml feed.

2

There are 2 best solutions below

1
On

Well, as far as I understood you need to:

  • Fetch new XML data
  • Parse it
  • Update tableView datasource
  • Add a button to your view, connect it with action, smth like this:

    - (IBAction)updateTableData:(id)sender { [self.tableView reloadData]; }

0
On

hey this is my first stack overflow answer of all time!1!

So basically use the self.tableView.reloadData() function

  1. create the button in your storyboard file
  2. connect it to your viewcontroller.swift file
  3. create and IB action
  4. execute self.tableView.reloadData() in said function

hope that helps