UINavigationController 设置navigationItem 一些常用方法
我们直接看代码
//navigationItem属性设置 //设置提示区域 self.navigationItem.prompt="提示区域"//设置提示去只对当前ViewController有用,并且设置之后导航栏的高度会变成94像素 //设置普通标题 self.navigationItem.title="第一个页面"//如果我们设置了self.title这两者会相互覆盖,谁最后设置谁就现实出来 //标题还可以设置为一个view //设置一个搜索框 let searchBar=UISearchBar(frame: CGRectMake(0,200,30)) self.navigationItem.titleView=searchBar //设置一个分段选择器 let segController=UISegmentedControl(items: ["所有通话","未接电话"]) segController.selectedSegmentIndex=0 self.navigationItem.titleView=segController
其中主要是提示区域和标题
标题可以直接设置View
好了大家测试一下
苹果开发群 :414319235 欢迎加入 欢迎讨论问题
原文链接:https://www.f2er.com/swift/325980.html