对于我的应用程序,我需要识别工具栏上的滑动手势来更改工具栏上的项目。所以我可以滚动浏览工具栏。
我想使用 XCode 4.3 为 iOS 5.0 或更高版本开发
我只发现了如何使用 swipeGestures 更改 viewController。
你能帮助我吗?
-(void)swipeDidHappen:(UISwipeGestureRecognizer*)swipe {
[self setToolbarItems:secondArray animated:YES];
}
应该淡出/在一些新项目中很棒。请注意,工具栏必须是 UINavigationController 提供的工具栏。要连接它,请在代码中创建一个,然后使用[[self toolbar]addGestureRecognizer:gesture];
. secondArray
是 UIBarButtonItems 的数组,必须以编程方式制作(据我所知,您不能对数组进行故事板,也不应该)。