从ViewController动画/ Segue到不同的数据 - Swift

时间:2015-12-05 12:28:36

标签: ios xcode swift segue viewcontroller

我确实有DetailViewController,其中包含来自数组的单个对象的信息。 (例如,我有一系列汽车,我想在detailViewController上显示1个汽车的数组)

通过向左/向右滑动,我想查看阵列中的下一个/上一个汽车。

到目前为止,我刚刚更改了与当前汽车对象匹配的标签文本,但我想在每次滑动时都想要动画。

switch swipeGesture.direction {
        case UISwipeGestureRecognizerDirection.Left:
            if currentIndex < events.count-1 {
                currentIndex += 1
            }
        case UISwipeGestureRecognizerDirection.Right:
            if currentIndex != 0 {
                currentIndex -= 1
            }
        default:
            break
        }

那么,归档这一目标的最有效方法是什么?

1 个答案:

答案 0 :(得分:1)

您必须使用UIPageViewController