之前我们一直在使用UINavigationController, 但我们都知道其实UINavigationController上是有一个TitleView, 还有一个UINavigationBar, 而NavigationBar的左右两边是可以添加按钮的, 我们可以使用Storyboard直接拖动按钮, 也可以使用代码来添加, 这里讲的是使用代码去添加按钮.
1.布局界面
2.实现代码
由于我们这里不需要关联什么控件, 也不需要写什么假数据, 所以我们直接来实现代码.
override func viewDidLoad() {
super.viewDidLoad()
// 1.初始化右边的添加按钮
let rightAddButton: UIBarButtonItem = UIBarButtonItem(title: "Add", style: UIBarButtonItemStyle.Plain, target: self, action: "addButton")