喜欢交朋友的加:微信号 dwjluck2013

1、在自定义titleview的.h文件 里重写 intrinsicContentSize 属性

@property(nonatomic, assign) CGSize intrinsicContentSize;

2、控制器中这样写

// 导航栏控件
    NavTitleView *titleView = [[NavTitleView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 44)];
    titleView.intrinsicContentSize = CGSizeMake(SCREEN_WIDTH, 44);
    titleView.backgroundColor = [UIColor clearColor];
    self.navigationItem.titleView = titleView;

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-04
  • 2021-12-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
  • 2021-05-19
  • 2021-09-04
  • 2021-08-24
相关资源
相似解决方案