Related questions
UITableview reloaddata with animation
I have a UITableView which is populated from array and a drop down list.
If I select any row of drop down list the array will be inserted with new values and tableview should get reloaded.
How to animate the …
How to keep UITableView contentoffset after calling -reloadData
CGPoint offset = [_table contentOffset];
[_table reloadData];
[_table setContentOffset:offset animated:NO]; //unuseful
// __block UITableView *tableBlock = _table;
// [self performBlock:^(id sender) {
// [tableBlock setContentOffset:offset];
// } afterDelay:2];
I know don't know of any delegate method which gets called after reloadData.
And using afterDelay:2 …
Reload section method in swift 3?
I have code written in objective c.I want to convert this code into the swift3 code.
[_expandableTableView reloadSections:[NSIndexSet indexSetWithIndex:gestureRecognizer.view.tag] withRowAnimation:UITableViewRowAnimationAutomatic];
After converting using online tool it gave me below code but it does not …