iOS 11 navigationItem.titleView Width Not Set

后端 未结 14 1766
遥遥无期
遥遥无期 2020-12-13 07:58

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

14条回答
  •  没有蜡笔的小新
    2020-12-13 08:53

    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
    

提交回复
热议问题