iOS项目中要求导航栏的返回按钮只保留那个箭头,去掉后边的文字

ios 11以前使用

[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(NSIntegerMin, NSIntegerMin) forBarMetrics:UIBarMetricsDefault];

会导致图片偏下,这中方式不可用

ios 11之后,考虑隐藏title,设置其透明度

[[UIBarButtonItem appearance] setTitleTextAttributes:@{ NSForegroundColorAttributeName: [UIColor clearColor] } forState:UIControlStateNormal];

你可能感兴趣的:(iOS项目中要求导航栏的返回按钮只保留那个箭头,去掉后边的文字)