I'm adding cell to a section like this:
SCTableViewSection *section = [SCTableViewSection sectionWithHeaderTitle:@"Events"];
for (Event *evt in Events) {
SCControlCell *evtDataCell = [SCControlCell cellWithText:nil withBoundObject:evt withObjectBindings:evtDataBindings withNibName:@"EventCell"];
[section addCell:evtDataCell];
This works fine but I'd like to add a custom cell divider (ie a shadowed line). I'm thinking if there is no quick solution that I can place each cell in it's own section with a custom 2 px headerView, which isn't practical. Or I can create another SCControlCell with a 2px height and the imageView and intermix them.
I'm I thinking clearly?
Gary