UITableView cell with background image

后端 未结 9 792
無奈伤痛
無奈伤痛 2020-11-29 17:14

i have a UITableView, where theres 3 images. 1 for the selected Cell, 1 for the Cell background, and 1 for the TableView background.

My selected Cell, is working jus

9条回答
  •  死守一世寂寞
    2020-11-29 17:44

    Only this solution worked out for me .

    Cell.backgroundColor = [UIColor clearColor];
    Cell.contentView.backgroundColor=[UIColor clearColor];
    

    Hope this helps !

提交回复
热议问题