Remove corner shadow/offset in grouped UITableView

前端 未结 4 955
[愿得一人]
[愿得一人] 2021-02-05 18:48

When a UITableView of type UITableViewStyleGrouped has a background view that is a non-default color or pattern image on the iPad, the rounded corners have an ugly extra line, s

4条回答
  •  旧巷少年郎
    2021-02-05 19:25

    I had the same problem when using [UIColor scrollViewTexturedBackgroundColor]. I managed to remove the "bevel effect" / "drop shadow" by using the code below:

    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

提交回复
热议问题