Skip to content

Instantly share code, notes, and snippets.

@KentarouKanno
Last active April 16, 2019 19:26
Show Gist options
  • Save KentarouKanno/da3b019a2c5408b070dbf4fac9600d5e to your computer and use it in GitHub Desktop.
Save KentarouKanno/da3b019a2c5408b070dbf4fac9600d5e to your computer and use it in GitHub Desktop.
  • NavigationBarの画像を共通で設定する

※ 参考URL: UINavigationBarの戻るボタンのカスタマイズまとめ

UINavigationBar.appearance().tintColor = .black /* Color */
let backImage = UIImage(named: "BackImage")
UINavigationBar.appearance().backIndicatorImage = backImage
UINavigationBar.appearance().backIndicatorTransitionMaskImage = backImage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment