我有以下代码
final class MyViewController: UIViewController,
UICollectionViewDataSource, UICollectionViewDelegate, /*..*/ {
//
// Declaring local variables, other controllers and delegates etc.
//
override func viewDidLoad() {
super.viewDidLoad()
let item = UIBarButtonItem(title: "A button that should do nothing",
style: .Plain, target: nil, action: nil)
self.navigationController!.toolbar.items = [item]
self.navigationController!.toolbarHidden = false
}
// the rest of my code
}
无论我做什么,工具栏都会出现,但内部不会呈现任何内容。
我也试过
self.navigationController?.toolbarItems?.insert(item, atIndex: 0)
进行项目的插入,但仍然没有运气。
我做错了什么?
答案 0 :(得分:-1)
通过
添加项目进行修复self.toolbarItems = [item]