I have a TableView inside a ViewController.
I made the TableView stretch to the View SuperMargings (with constraints) and disabled all SafeArea Inset options but my TableView is still under the SafeArea when I run my project.
How can I make my TableView go full height on iPhones with notch?

If you have already pinned
tableViewto it's superview(not tosafeArea) with constraints buttableViewstill respectssafeAreathere is propertycontentInsetAdjustmentBehaviorinUIScrollView(UITableViewis subclass ofUIScrollViewas we know) since iOS 11.This property is
UIScrollView.ContentInsetAdjustmentBehaviorenum with 4 options. You need to set.nevertocontentInsetAdjustmentBehavior.