我浏览了一些在线教程,但是没有任何帮助。
那是我的viewController的代码:
import UIKit
class ViewController: UINavigationController {
let textView = UITextView()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
// tried this
self.navigationItem.title = "AAA"
// and this
self.title = "AAA"
// and finally this
self.parent?.title = "AAA"
}
}
我不明白为什么这不起作用(我以前没有使用导航栏)
我没有更改main.storyboard中的任何内容。
感谢您的回答。
答案 0 :(得分:4)
首先在情节提要中选择视图控制器,然后
编辑器->嵌入->导航控制器
然后在您的ViewController
类中添加
self.title = "AAA"
在您的viewDidLoad
方法中,您的代码将如下所示:
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
self.title = "AAA"
}
}
您需要将UINavigationController
替换为UIViewController
答案 1 :(得分:2)