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.
Well, as far as I understood you need to:
Add a button to your view, connect it with action, smth like this:
- (IBAction)updateTableData:(id)sender { [self.tableView reloadData]; }
hey this is my first stack overflow answer of all time!1!
So basically use the self.tableView.reloadData() function
hope that helps
Copyright © 2021 Jogjafile Inc.
Well, as far as I understood you need to:
Add a button to your view, connect it with action, smth like this:
- (IBAction)updateTableData:(id)sender { [self.tableView reloadData]; }