SKSTableView
SKSTableView copied to clipboard
Error When Clicked Expandable Row While Another Row Expanded (BUG)
I set _shouldExpandOnlyOneCell=YES
when I expand i row, if clicked another expandable row tableview detect it as a subrow.
I mean correspondingIndexPath.subRow
not 0 for expandable row.
Edit : Abi Türkmüşsün ya :D ben düzelttim bu sıkıntıyı, pull requestle ekledim. #50
NSIndexPath *correspondingIndexPath = [self correspondingIndexPathForRowAtIndexPath:indexPath];
if (correspondingIndexPath.subRow == 0)
{
[_SKSTableViewDelegate tableView:tableView didSelectRowAtIndexPath:correspondingIndexPath];
} else {
[_SKSTableViewDelegate tableView:self didSelectSubRowAtIndexPath:correspondingIndexPath];
}
Hi,
I am getting same issue, any clue...
@googler2013 i found the solution. please follow #50