web-dev-qa-db-ja.com

iOS 8 Swiftナビゲーションバーのタイトル、タブベースのアプリケーションにボタンが表示されない

私は このチュートリアルこの回答 、および この回答 に従って、タブベースのアプリケーションで各タブのナビゲーションバーを作成しようとしています。 iOS 8/Swiftでは、ナビゲーションバーにタイトルやボタンが表示されません。

これが私がこれまでに持っているものです:

// AppDelegate.Swift
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {            
    let tabBarController = UITabBarController()

    let vc1 = ViewController()
    let vc2 = ViewController()
    let vc3 = ViewController()

    let nc1 = UINavigationController(rootViewController: vc1)
    let nc2 = UINavigationController(rootViewController: vc2)
    let nc3 = UINavigationController(rootViewController: vc3)

    let controllers = [nc1,nc2,nc3]

    tabBarController.viewControllers = controllers

    nc1.tabBarItem = UITabBarItem(title: "item1", image: nil, tag: 1)
    nc2.tabBarItem = UITabBarItem(title: "item2", image: nil, tag: 1)
    nc3.tabBarItem = UITabBarItem(title: "item3", image: nil, tag: 1)

    window = UIWindow(frame: UIScreen.mainScreen().bounds)
    window?.rootViewController = tabBarController
    window?.makeKeyAndVisible()

    return true
}

// ViewController.Swift
class ViewController: UIViewController, UINavigationBarDelegate {

    override func viewDidLoad() {
        super.viewDidLoad()

        let navigationBar = UINavigationBar(frame: CGRectMake(0, 0, self.view.frame.size.width, 44))
        navigationBar.backgroundColor = UIColor.blueColor()
        navigationBar.delegate = self;

        let navigationItem = UINavigationItem()
        navigationItem.title = "Title"

        let leftButton =  UIBarButtonItem(title: "Left Button", style:   UIBarButtonItemStyle.Plain, target: self, action: nil)
        let rightButton = UIBarButtonItem(title: "Right Button", style: UIBarButtonItemStyle.Plain, target: self, action: nil)

        navigationItem.leftBarButtonItem = leftButton
        navigationItem.rightBarButtonItem = rightButton

        navigationBar.items = [navigationItem]

    }

    func positionForBar(bar: UIBarPositioning) -> UIBarPosition {
        return UIBarPosition.TopAttached
    }
}

しかし、シミュレーターの上部に空白のナビゲーションバーが表示されています。

iPhone 6 simulator screenshot

5
Imran

UINavigationBarがすでに提供されている場合は、カスタムUINavigationControllerを作成しています。

代わりにViewControllerでこれを試してください。

override func viewDidLoad() {
    super.viewDidLoad()

    self.title = "Title"

    let navigationBar = navigationController!.navigationBar
    navigationBar.tintColor = UIColor.blueColor()

    let leftButton =  UIBarButtonItem(title: "Left Button", style: UIBarButtonItemStyle.Plain, target: self, action: nil)
    let rightButton = UIBarButtonItem(title: "Right Button", style: UIBarButtonItemStyle.Plain, target: self, action: nil)

    navigationItem.leftBarButtonItem = leftButton
    navigationItem.rightBarButtonItem = rightButton
}
7
mbottone

新しいナビゲーションバーを使用する必要はありません。既存のナビゲーションバーを使用するだけです。ここで行ったことを覚えておいてください:

let nc1 = UINavigationController(rootViewController: vc1)

したがって、View Controllerはすでにナビゲーションコントローラー内に埋め込まれているため、selfを使用してナビゲーションアイテムにアクセスするだけです。

self.title = "Your Title"

var homeButton = UIBarButtonItem(title: "LeftButton", style: .Plain, target: self, action: "")

var logButton = UIBarButtonItem(title: "RigthButton", style: .Plain, target: self, action: "")

self.navigationItem.leftBarButtonItem = homeButton
self.navigationItem.rightBarButtonItem = logButton
2
Aladin

不必要に2つのナビゲーションバーを作成していました。ナビゲーションコントローラーにはナビゲーションバーが付属しており、ViewControllerを次のように変更しました。

class ViewController: UIViewController, UINavigationBarDelegate {

    override func viewDidLoad() {
        super.viewDidLoad()

        self.navigationItem.title = "My Title"
        self.navigationItem.leftBarButtonItem = UIBarButtonItem(title: "Left Button", style:   UIBarButtonItemStyle.Plain, target: self, action: nil)
        self.navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Right Button", style: UIBarButtonItemStyle.Plain, target: self, action: nil)
    }

    func positionForBar(bar: UIBarPositioning) -> UIBarPosition {
        return UIBarPosition.TopAttached
    }

}
0
Imran