Swift - 仿寫QQ側滑選單

weixin_33830216發表於2016-05-18

公司專案一直沒有推進, 只能自己寫一些Swift程式碼, 準備全面轉向Swift開發.

之前的專案中使用過抽屜效果, 一直都是使用第三方, 準備自己一個抽屜

最終效果

900393-40982fb1c563f402.gif
執行效果

1. Storyboard

  1. 本人懶, 就沒有搭UI, 使用兩張截圖
  2. 在 HomeViewController 中新增 UIPanGestureRecognizer, 並進行關聯


    900393-5696e2a73c46894f.png
    螢幕快照 2016-05-18 16.12.41.png

2. MeunViewController

  1. 通過 Storyboard 的 取出 HomeViewController 的 view 新增到subview
  2. 給 HomeViewController 的 UIPanGestureRecognizer 新增響應事件
        // 通過 Storyboard 取出 HomeViewController 的 view, 放在背景上
        homeViewController = UIStoryboard.init(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("HomeViewController") as! HomeViewController
        self.view.addSubview(homeViewController.view)
        
        // 繫結 UIPanGestureRecognizer
        homeViewController.panGusture.addTarget(self, action: #selector(pan))

3.響應事件

struct Common {
    static let screenWidth = UIScreen.mainScreen().bounds.size.width
    static let screenHeight = UIScreen.mainScreen().bounds.size.height
}
    var homeViewController: HomeViewController!
    var distance: CGFloat = 0
    let Proportion: CGFloat = 0.3
    // 響應 UIPanGestureRecognizer 事件
    @objc private func pan(recongnizer: UIPanGestureRecognizer) {
        
        // 獲取實時距離
        let x = recongnizer.translationInView(self.view).x
        let trueDistance = distance + x
        
        // 如果 UIPanGestureRecognizer 結束, 則自動停靠
        if recongnizer.state == UIGestureRecognizerState.Ended {
            print(x)
            // 判斷停靠位置
            if trueDistance > Common.screenWidth * Proportion {
                showLeft()
            } else {
                showHome()
            }
            return
        }
        
        // 只新增左抽屜
        if trueDistance < 0 {
            return
        }
        recongnizer.view!.center = CGPointMake(self.view.center.x + trueDistance, self.view.center.y)
    }

4 . 手勢響應事件中方法

private func showLeft() {
        distance = self.view.center.x * 1.5
        doAnmation()
    }
    
    private func showHome() {
        distance = 0
        doAnmation()
    }
    
    private func doAnmation() {
        UIView.animateWithDuration(0.3,
                                   delay: 0,
                                   options: .CurveEaseInOut,
                                   animations: { () -> Void in
                                                    self.homeViewController.view.center = CGPointMake(self.view.center.x + self.distance, self.view.center.y)
                                                },
                                   completion: nil)
    }
}

結語

只是實現了一個側滑的效果, 並沒有實現相關的功能, 待完善

相關文章