Swift - 从右到左执行 eguewithidentifier 转换样式

Posted

技术标签:

【中文标题】Swift - 从右到左执行 eguewithidentifier 转换样式【英文标题】:Swift - performseguewithidentifier transition style from right to left 【发布时间】:2015-06-07 12:34:52 【问题描述】:

如何使用performseguewithidentifier 进行从左到右的转换?我想要做的是当用户向右滑动时,页面/视图控制器的转换将从右向左切换,通常它会从左向右滑动。这可能吗?

我的代码:

override func viewDidLoad() 

var swipeRight = UISwipeGestureRecognizer(target: self, action: "respondToSwipeGesture:")
        swipeRight.direction = UISwipeGestureRecognizerDirection.Right
        self.view.addGestureRecognizer(swipeRight)

    


    func respondToSwipeGesture(gesture: UIGestureRecognizer) 

        if let swipeGesture = gesture as? UISwipeGestureRecognizer 

            switch swipeGesture.direction 
            case UISwipeGestureRecognizerDirection.Right:
                performSegueWithIdentifier("LeftSegue", sender: self)
                println("Swiped right")
            default:
                break
            
        
    

【问题讨论】:

这可能会有所帮助:***.com/questions/30551909/… 【参考方案1】:

您必须编写自己的自定义交互式过渡。 Here 和 here 你可以找到示例教程。这很简单,但有一点样板代码。

【讨论】:

以上是关于Swift - 从右到左执行 eguewithidentifier 转换样式的主要内容,如果未能解决你的问题,请参考以下文章

从右到左滚动背景 Swift / Sprite Kit

如何使用 Swift 在文本字段(从右到左)上输入货币格式?

如何使用 Swift 在文本字段(从右到左)上输入货币格式?

ios / xcode 使文本书写方向从右到左

IOS:UIViewAnimationTransitionCurlUp 从右到左

有没有办法从右到左对齐视图,因为开发语言是阿拉伯语?