After I moved to iOS 7 / xcode 5, the hidden border of the sections appeared although I handled this case for iOS 6 and it worked for me.
In my code I'm using this to make the section border hidden, which works on iOS 6 but not on iOS 7:
cell.backgroundView =[[UIView alloc] initWithFrame:CGRectZero];
I tried all answers in this question and this one but no answer worked for me.
Please advice.