UITableView with Transparent Gradient at Top and Bottom

后端 未结 4 1755
广开言路
广开言路 2021-02-09 09:54

I have searched this forum, Google and other forums and have not found an the answer to my particular issue.

Basically, I have a UIView which contains

4条回答
  •  长情又很酷
    2021-02-09 10:14

    Sounds like the background color of your table view is set to white. Try setting the background of your table view to transparent:

    tableView.backgroundColor = [ UIColor clearColor ] ;
    tableView.opaque = NO ;
    

提交回复
热议问题