Change iPhone tableview (style grouped) background color while preserving texture

后端 未结 4 1101
北荒
北荒 2020-12-25 14:32

How can we change the background color of tableview (style grouped) while still preserving texture of thin columns/lines effect that we can see when it has the default blue

4条回答
  •  一生所求
    2020-12-25 15:07

    tableview.backgroundView = nil;
    tableview.backgroundColor = [UIColor clearColor];
    

    This may help you in solving your problem

提交回复
热议问题