Grey rectangle at the bottom of the UITableView in Xcode 13 / iOS15.

When I compile my project in Xcode13, an unexpected grey rectangle with blur effect appears at the bottom of the UITableView. When I scroll the table to the bottom - rectangle disappears. This does not happen when I use Xcode 12.4. I know, that a new extra header padding has been added in Xcode 13 / iOS 15, but setting this to 0 does not solve the problem. And I could not find anything related to paddings in footer or something like this. Does anybody have this problem?

Replies

In my case the gray rectangle at the end of a UITableView is caused by the footer view.

I remove it simply by doing: tableView.tableFooterView = UIView(frame: .zero)