LoginSignup
2
3

More than 5 years have passed since last update.

[Swift]Remove border from bottom of Navigation bar

Posted at

Memorandum

Delete border from bottom of Navigation bar.
ナビゲーションバーの境界線(下線)を消す

This is useful when put same color UI part below navigation bar.

 func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {

// Add bellow lines at didFinishLaunchingWithOptions
  UINavigationBar.appearance().setBackgroundImage(UIImage(), for: UIBarMetrics.default)
        UINavigationBar.appearance().shadowImage = UIImage()

        return true
    }

Before
Screen Shot 2018-08-17 at 9.17.11.png

After
Screen Shot 2018-08-17 at 9.16.07.png

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3