I have 4 sections in tableview. I am reloading section using :
[self.tableview reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationNone];
What happens, when i observe cells in section 2 and my code runs to reload section 1; tableView position gets up. I want tableView position to be maintained, when any section in table is reloading.At the same time, I don't want any animation for tableview, when table is reloading. Thanks!