LoginSignup
31
26

More than 5 years have passed since last update.

Navigation Barのボーダーを削除する

Posted at

UINavigationControllerで作るとNavigation Barの下にボーダーが表示されてしまいました。

Artboard.png

どうもストーリーボードからはうまく変更できないらしいので、コードで制御する。

ViewController.swift
import UIKit

class ViewController: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()

        // 影を消すには両方必要
        self.navigationController?.navigationBar.setBackgroundImage(UIImage(), forBarMetrics: UIBarMetrics.Default)
        self.navigationController?.navigationBar.shadowImage = UIImage()
    }
}

消せた

スクリーンショット 2016-05-27 14.31.19.png

31
26
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
31
26