gpt4 book ai didi

ios - 使用滑动手势切换 View Controller

转载 作者:可可西里 更新时间:2023-11-01 03:05:45 25 4
gpt4 key购买 nike

好的,这是我遇到的问题:

我正在尝试从一个我命名为 MenuViewControllerviewController 进行切换,其中包含我的菜单(很明显)。我有一个名为 ViewController 的单独 viewController,其中包含我的 mapView。我希望能够用双指向左滑动 从我的 MenuViewController 到我的 mapView

我不确定从哪里开始。

此外,我使用的是 xib 文件,而不是 Storyboard。运行 iOS 6。

最佳答案

UISwipeGestureRecognizer *swipeLeftGesture=[[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeGesture:)];
[self.view addGestureRecognizer:swipeLeftGesture];
swipeLeftGesture.direction=UISwipeGestureRecognizerDirectionLeft;

-(void)handleSwipeGesture:(UIGestureRecognizer *) sender
{
NSUInteger touches = sender.numberOfTouches;
if (touches == 2)
{
if (sender.state == UIGestureRecognizerStateEnded)
{
//Add view controller here
}
}
}

关于ios - 使用滑动手势切换 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17312700/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com