我用tabbar控制器创建了一个项目。我的标签上有5个按钮,现在我想在我的第一个标签上做双击手势识别器
我已经完成了在tabbar上做手势,但是当我双击tabbar上的任何按钮时,该方法被调用。 如何只为一个tabbarbutton?
-(void)createTab{
Array = [[NSMutableArray alloc] initWithCapacity:5];
myhomeVC = [[MyHomeViewController alloc] initWithNibName:@"MyHomeViewController" bundle:nil];
homeNavBar=[[UINavigationController alloc]initWithRootViewController:myhomeVC];
groupVC = [[GroupSearchViewController alloc] initWithNibName:@"GroupSearchViewController" bundle:nil];
groupNavBar=[[UINavigationController alloc]initWithRootViewController:groupVC];
uploadVC = [[UploadFoodImageViewController alloc] initWithNibName:@"UploadFoodImageViewController" bundle:nil];
uploadNavBar=[[UINavigationController alloc]initWithRootViewController:uploadVC];
searchVC = [[SearchViewController alloc] initWithNibName:@"SearchViewController" bundle:nil];
searchNavBar=[[UINavigationController alloc]initWithRootViewController:searchVC];
nearbyVC = [[NearByViewController alloc] initWithNibName:@"NearByViewController" bundle:nil];
nearbyNavBar=[[UINavigationController alloc]initWithRootViewController:nearbyVC];
[Array addObject:homeNavBar];
[Array addObject:groupNavBar];
[Array addObject:uploadNavBar];
[Array addObject:searchNavBar];
[Array addObject:nearbyNavBar];
appDelegate.tabBarController.viewControllers =Array;
UITapGestureRecognizer *doubleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleDoubleTap:)];
[doubleTap setNumberOfTapsRequired:2];
[appDelegate.tabBarController.view addGestureRecognizer:doubleTap];
}
-(void)handleDoubleTap:(UIGestureRecognizer *)gestureRecognizer {
NSLog(@"Tab tpped");
}
答案 0 :(得分:1)
我有一个技巧可以做到这一点。你也尝试,可能会有用。我还在努力。
转到shouldSelectViewController
委托方法。每次敲击项目时都会触发此方法。所有这些switch语句都是不同的标签点击应用程序。
-(BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController
{
DBGS;
switch (viewController.tabBarItem.tag)
{
case 0:
{
_tapCounter++; // Here I am increasing a NSInteger count to check how many times it increaed
if(_tapCounter == 2) // it is tapped twice, so select this case
{
DBG(@"Double Tap done");
[[(AppDelegate *)[[UIApplication sharedApplication] delegate] fvc] getFeeds]; // write your code that you want on double tap
_tapCounter = 0; // making it zero again
}
[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(tapZero) userInfo:self repeats:NO]; // this timer waits for 1 sec (bacause 1 sec is long and double tap should be in few miliseconds), then again makes _tapCounter to zero.
}
break;
case 1:
{
}
break;
case 2:
{
}
break;
case 3:
{
}
case 4:
{
}
break;
default:
break;
}
return YES;
}
- (void)tapZero
{
_tapCounter = 0; // _tapCounter is zero here
}