Seeing a behavior on iOS11 with a navigationItem.titleView where the width of the titleView is not the full width of the screen.
I have a custom view that I set as t
Fixed it by creating a subclass of UIView and assigned it to a title view of UINavigationController
Objective-C:
#import "FLWCustomTitleView.h" @implementation FLWCustomTitleView - (CGSize )intrinsicContentSize { return UILayoutFittingExpandedSize; } @end