我有三个选项卡,每个选项卡都有不同数量的 rightBarButtonItem 并且有不同的操作。
例如。第一个选项卡有两个右栏按钮电话和搜索,第二个选项卡有三个右栏按钮添加、删除和编辑,第三个选项卡有两个右栏按钮完成和更多。我不知道如何添加这个。
请提出一些想法。提前致谢。
我有三个选项卡,每个选项卡都有不同数量的 rightBarButtonItem 并且有不同的操作。
例如。第一个选项卡有两个右栏按钮电话和搜索,第二个选项卡有三个右栏按钮添加、删除和编辑,第三个选项卡有两个右栏按钮完成和更多。我不知道如何添加这个。
请提出一些想法。提前致谢。
您可以在我们的 ViewController 中添加以下功能,它是继承ButtonBarPagerTabStripViewControllerand
检查toIndex
是 0 或 1 或 2,然后自定义您的rightBarButtonItems
override func updateIndicator(for viewController: PagerTabStripViewController, fromIndex: Int, toIndex: Int, withProgressPercentage progressPercentage: CGFloat, indexWasChanged: Bool) {
if toIndex == 0 {
self.navigationItem.rightBarButtonItems = nil
// add new barButtons
}
else if toIndex == 1 {
self.navigationItem.rightBarButtonItems = nil
// add new barButtons
}
else {
self.navigationItem.rightBarButtonItems = nil
// add new barButtons
}}