web-dev-qa-db-ja.com

Swift-ナビゲーションビューコントローラーにタイトルが表示されない

アクション時にタブバービューコントローラーにセグエを送信するナビゲーションビューコントローラーがあります。このセグエのため、タブ付きビューコントローラーはナビゲーションバーを継承します。タブバーのViewControllerに接続されているViewControllerの1つにタイトルを適用しようとしていますが、コードを使用してタイトルを設定できません。誰かがそれがあり得る理由を知っていますか?

これが私のストーリーボードの写真です:

storuboard

ログアウトボタンのあるViewControllerは、ナビゲーションバー(コード)でタイトルを設定しようとしている場所です。

import UIKit

class ProfileSettingsViewController: UIViewController {

    override func viewWillAppear(animated: Bool) {

        self.navigationItem.title = "Profile Settings"

    }

    override func viewDidLoad() {
        super.viewDidLoad()

        self.navigationItem.leftBarButtonItem = nil


    }



    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }



    @IBAction func logoutButton(sender: AnyObject) {

        PFUser.logOut()
        var currentUser = PFUser.currentUser()
        self.performSegueWithIdentifier("userLoggedOut", sender: self)
        self.navigationController?.setNavigationBarHidden(self.navigationController?.navigationBarHidden == false, animated: true)

    }

}

タブバーコントローラーへのセグエをトリガーするナビゲーションコントローラーに埋め込まれたビューコントローラー:

import UIKit

class UserRegistrationViewController: UIViewController {


    func displayAlert(title:String, error:String) {

        var alert = UIAlertController(title: title, message: error, preferredStyle: UIAlertControllerStyle.Alert)

        alert.addAction(UIAlertAction(title: "OK", style: .Default, handler: {
            action in



        }))

        self.presentViewController(alert, animated: true, completion: nil)


    }

    @IBOutlet var usernameTextField: UITextField!

    @IBOutlet var emailTextField: UITextField!

    @IBOutlet var passwordTextField: UITextField!


    override func viewDidLoad() {
        super.viewDidLoad()


    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


    @IBAction func registerUser(sender: AnyObject) {

        var error = ""

        if usernameTextField.text == nil || emailTextField.text == nil || passwordTextField.text == nil {

            error = "Please enter a username, email and password"

        }


        if error != "" {

            displayAlert("Error In Form", error: error)

        } else {

            var user = PFUser.currentUser()

            user.username = usernameTextField.text
            user.password = passwordTextField.text
            user.email = emailTextField.text

            user.saveInBackgroundWithBlock {
                (succeeded: Bool!, signupError: NSError!) -> Void in
                if signupError == nil {

                    println(user.username)
                    println(user.password)
                    println(user.email)


                    self.performSegueWithIdentifier("successfulRegistration", sender: self)

                    self.navigationController?.setNavigationBarHidden(self.navigationController?.navigationBarHidden == false, animated: true)

                    // Hooray! Let them use the app now.
                } else {

                    if let errorString = signupError.userInfo?["error"] as? NSString {
                        error = errorString
                    } else {

                        error = "Please try again later."

                    }


                    self.displayAlert("Could Not Sign Up", error: error)

                }
            }


        }


    }



}
9
cphill

これは私のために働いた:self.parent?.title = "nav bar title"

14
Rehaan

ビューコントローラー階層では、ナビゲーションバーにUITabBarControllerのタイトルが表示されており、UITabBarController内のビューコントローラーは表示されていません。

ナビゲーションバーに表示されるタイトルを取得する最も簡単な方法は次のとおりです。

override func viewWillAppear(animated: Bool) {

    self.tabBarController?.navigationItem.title = "Profile Settings"

}
16
Jakub Vano

これを試して:

self.navigationController?.navigationBar.topItem?.title = "Profile Settings"
8
Hsm

Swift

UINavigationControllerに埋め込まれている場合は、ViewControllerのviewDidLoad()メソッド内から次のようにタイトルを設定できます。

override func viewDidLoad() {
    super.viewDidLoad()

    /* If view controller is a direct child of UINavigationController */
    self.title = "Title Here"

    /* If view controller's parent is a direct child of UINavigationController e.g. a child of embedded tab view controller */
    self.parent?.title = "Title Here" 
}
6
AWebster

ログアウト画面のビューコントローラでこれを追加します-

self.tabBarController?.navigationItem.title="Profile Settings"
5
Uttam Sinha

Tabbarcontrollerの有無にかかわらずViewControllerの使いやすさについてコメント行を確認してください

override func viewDidAppear(_ animated: Bool) {
    addNavBarImage()
}

func addNavBarImage() {

    let navController = self.navigationController!
    let image = #imageLiteral(resourceName: "navview") //Your logo url here
    let imageView = UIImageView(image: image)
    let bannerWidth = navController.navigationBar.frame.size.width
    let bannerHeight = navController.navigationBar.frame.size.height
    let bannerX = bannerWidth / 2 - (image.size.width) / 2
    let bannerY = bannerHeight / 2 - (image.size.height) / 2
    imageView.frame = CGRect(x: bannerX, y: bannerY, width: bannerWidth, height: bannerHeight)
    imageView.contentMode = .scaleAspectFit


    self.navigationItem.titleView = imageView //  ViewController without Tabbarcontroller 

    self.tabBarController?.navigationItem.titleView = imageView //ViewController with Tabbarcontroller 

}
0

Swift5簡単な答えはそれに従ってください

DispatchQueue.main.async {
    self.title = "Your Title"
}
0
Shakeel Ahmed