如何在导航栏中添加Pagecontrol和title。
我需要设置截图。 我尝试过导航项的titleView。 但是,我无法设定标题。
let navBarSize = navigationController!.navigationBar.bounds.size
let origin = CGPoint(x:navBarSize.width/2,y:navBarSize.height/2)
pageControl = UIPageControl(frame: CGRect(x: origin.x,y: origin.y,width: 10,height: 10))
self.pageControl.currentPage = 0
self.pageControl.tintColor = UIColor.black
self.pageControl.pageIndicatorTintColor = UIColor.white
self.pageControl.currentPageIndicatorTintColor = UIColor.black
self.navigationItem.titleView = self.pageControl
答案 0 :(得分:0)
正如@Alistra所提到的,您需要创建UILabel
并添加UIPageControl
和UIView
,然后将titleView
设置为{{1}}。