I have an SLExpandableTableView that has a couple of sections, but only one section header. When one section expands there is a strange animation where a copy of the section header moves down (then disappears) see screen shots.
The only way Ive managed to fix it is to comment out the following in - (void)expandSection:(NSInteger)section animated:(BOOL)animated in your SLExpandableTableView class
//[self scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:section]
// atScrollPosition:UITableViewScrollPositionTop
// animated:animated];
Not sure if this is a bug in your code or if I can do a workaround in mine... any ideas?
PS. I love this class - best expandable table view around!





I have an SLExpandableTableView that has a couple of sections, but only one section header. When one section expands there is a strange animation where a copy of the section header moves down (then disappears) see screen shots.
The only way Ive managed to fix it is to comment out the following in - (void)expandSection:(NSInteger)section animated:(BOOL)animated in your SLExpandableTableView class
Not sure if this is a bug in your code or if I can do a workaround in mine... any ideas?
PS. I love this class - best expandable table view around!