I\'m facing an issue where the large title navigation bar collapses very abruptly when scrolling on a UITableView embedded inside of a UIViewController. The problem seems to onl
Put this line of code on your UIViewController containing UITableView and works fine for me.
Swift
extendedLayoutIncludesOpaqueBars = true;
Objective-C
self.extendedLayoutIncludesOpaqueBars = YES;
Set UITableView AutoLayout top space to "Superview" instead of "Safe Area"