I have a tab bar controller with a view controller in which there is only a table view.
I set the large title of the navigation bar with the code:
if (@available(iOS 11.0, *)) { [[UINavigationBar appearance] setPrefersLargeTitles:YES]; } else {
This is an application crash when I open the 2nd time tab. or by randomly shifting tabs with the following message.
The 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 the problem. Thanks.
source share