全局修改 storyboard 的返回按钮和图片。看到网上大部分都是修改完图片之后直接修改按钮文字的位置。我觉得修改文字的颜色反而效果会更好点。代码贴在下面
// 设置返回按钮图片 UINavigationBar.appearance().backIndicatorImage = #imageLiteral(resourceName: "back") UINavigationBar.appearance().backIndicatorTransitionMaskImage = #imageLiteral(resourceName: "back") // 设置返回按钮文字为透明色 UIBarButtonItem.appearance().setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.clear], for: .normal) UIBarButtonItem.appearance().setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.clear], for: .highlighted)