Well, I found the answer for mine and shared it simply because it helps others.
I installed all my cells procedurally, so I disabled the delimiter through
m_tableView setSeparatorColor:[UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.0f]]
next I set the separator style through
m_tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
although I must admit that I did nothing, and it could be a remake.
For me, I found that cellForRowAtIndexPath was called to set up the cell, and I had to expand the background image by 1 pixel in height to get rid of the line (I use a stretch image for this too, which can also give itself to a fancy +1 request). I'm not a fan of arbiter +1, but that seemed to do the trick ...
frameBackground.size.height += 1;
therefore, without approving +1, the above steps worked for my list and now no longer have a separator.
sradforth
source share