IOS grouped tableview transparent cells

前端 未结 3 507
花落未央
花落未央 2021-01-21 04:33

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

3条回答
  •  爱一瞬间的悲伤
    2021-01-21 05:05

    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

提交回复
热议问题