是否可以在屏幕上的任何位置向左或向右滑动以切换iOS中的标签?感谢
示例1:只需向左/向右滑动即可在日历上切换月份 示例2:从0:12 http://www.youtube.com/watch?v=5iX4vcsSst8
开始答案 0 :(得分:20)
如果您使用标签栏控制器,则可以在每个标签的视图上设置滑动手势识别器。触发手势识别器时,它可以更改tabBarController.selectedTabIndex
此效果不会设置动画,但会使用滑动手势切换标签。这与我使用带有UITabBar的应用程序时左右两侧的按钮以及滑动手势以更改活动选项卡的情况大致相同。
- (void)viewDidLoad
{
[super viewDidLoad];
UISwipeGestureRecognizer *swipeLeft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(tappedRightButton:)];
[swipeLeft setDirection:UISwipeGestureRecognizerDirectionLeft];
[self.view addGestureRecognizer:swipeLeft];
UISwipeGestureRecognizer *swipeRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(tappedLeftButton:)];
[swipeRight setDirection:UISwipeGestureRecognizerDirectionRight];
[self.view addGestureRecognizer:swipeRight];
}
- (IBAction)tappedRightButton:(id)sender
{
NSUInteger selectedIndex = [rootVC.tabBarController selectedIndex];
[rootVC.tabBarController setSelectedIndex:selectedIndex + 1];
}
- (IBAction)tappedLeftButton:(id)sender
{
NSUInteger selectedIndex = [rootVC.tabBarController selectedIndex];
[rootVC.tabBarController setSelectedIndex:selectedIndex - 1];
}
答案 1 :(得分:4)
假设您使用的是UITabBarConroller
您的所有子ViewControllers都可以从一个为您完成所有繁重任务的类继承。
我就是这样做的
class SwipableTabVC : UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let left = UISwipeGestureRecognizer(target: self, action: #selector(swipeLeft))
left.direction = .left
self.view.addGestureRecognizer(left)
let right = UISwipeGestureRecognizer(target: self, action: #selector(swipeRight))
right.direction = .right
self.view.addGestureRecognizer(right)
}
func swipeLeft() {
let total = self.tabBarController!.viewControllers!.count - 1
tabBarController!.selectedIndex = min(total, tabBarController!.selectedIndex + 1)
}
func swipeRight() {
tabBarController!.selectedIndex = max(0, tabBarController!.selectedIndex - 1)
}
}
因此,属于UITabControllers的所有viewcontroller都可以从SwipableTabVC
而不是UIViewController继承。
答案 2 :(得分:3)
我建议将整个内容嵌入到pageviewcontroller中,如下所示: https://github.com/cwRichardKim/RKSwipeBetweenViewControllers
答案 3 :(得分:1)
当然,这是可能的。
每个屏幕都需要有一个UISwipeGestureRecognizer
用于滑动,然后调用标签栏执行所需的操作。这可以是将活动标签递增或递减到您想要的任何内容。
为了防止代码重复,您可以创建自定义UIViewController
并让所有视图控制器都从那里继承(或者其他几种方式)。