I have tab bar controller with view controller that has only a table view in it.
I am setting navigation bar large title using code:
if (@available(iOS 11.0, *)) {
[[UINavigationBar appearance] setPrefersLargeTitles:YES];
} else {
// Fallback on earlier versions
}
It's crashing app when I open tab 2nd time. or randomly shifting tabs with following message.
Error message is shown below:
Assertion failure in -[UITableView _addScrollViewScrollObserver:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit/UIKit-3694.4.18/UIScrollView.m:7693
Any idea to fix issue. Thanks.