ios 11以前使用
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(NSIntegerMin, NSIntegerMin) forBarMetrics:UIBarMetricsDefault];
会导致图片偏下,这中方式不可用
ios 11之后,考虑隐藏title,设置其透明度
[[UIBarButtonItem appearance] setTitleTextAttributes:@{ NSForegroundColorAttributeName: [UIColor clearColor] } forState:UIControlStateNormal];