I have a custom view as a search bar and set it to Navigation titleView. CustomView is no longer displayed on iOS 11 devices. I was debugging using the Hierarchy View, and I found that the size of the custom view frame (0,0).
This problem only occurs on iOS 11, it works fine on iOS 9 and 10.
UIView *searchBarView = [self createSearchBarView];
self.navigationItem.titleView = searchBarView;
searchBarView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
How to add custom view as Navigation titleView on iOS 11?
source
share