SKSTableView
SKSTableView copied to clipboard
An expandable table view.
``` -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { UIView *view = [UIView new]; view.frame = CGRectMake(0, 0, 320, 30); [view setBackgroundColor:[UIColor grayColor]]; return view; } ``` ``` self.tableView.sectionHeaderHeight = 20; self.tableView.estimatedSectionHeaderHeight =...
There are some bugs I found in SKSTableView, Could you please fix them? Thanks !!
AcessoryView - support both Right and Left.
I have been maintaining a project which has been using SKSTableView since long. I observed that cell selection is no longer expanding the sub-rows. Instead only click on accessory view...
add cocoapods support for SKSTableView feel free to change s.source location to official sources and add tag. Thanks your awesome project
in method `didSelectSubRowAtIndexPath`, has an error: property 'subRow' not found on object of type 'NSIndexPath *'. So my app crash.
**Hello, I am facing problem on Managing Selection Background Colour on SKSTableView Rows and it's Subrows as well.Can any one guide me for it. i just want to show current...
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...
The readme says to drag this into our project folder, but it doesn't seem to exist?
Eg: `- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { if ([_SKSTableViewDelegate respondsToSelector:@selector(tableView:heightForHeaderInSection:)]) [_SKSTableViewDelegate tableView:tableView heightForHeaderInSection:section]; return 0; }` Is that a bug? When I uncomment that method to use, It not work. :))