Trying to create a grouped tableview with trasnparent cells without any borders. Tableview\'s background color from top to bottom goes darker to lighter.
but somehow ta
What u did is correct , but try by setting cell's background view to nil to make the cell as completely transparent .
if u are using grouped tableview and cell's subclass of UITableViewCell, the borders are made disappear by setting background view to "nil"
cell.backgroundView = nil;
try this once not sure