ssowri1 / SPNavigationDrawerwithTABbar

This is a Custom Navigation controller along with tab bar controller and it provides a navigation slider to easy to access other controllers in iOS and it's made in Swift 3.
Apache License 2.0
93 stars 29 forks source link

Can we add Pan gesture for drag and leave in side menu #3

Open rajkumar0143 opened 6 years ago

ssowri1 commented 6 years ago

First of all thank you for using my asset. Yeah you can add pan gesture to this SPNavigationDrawerwithTABbar. Although I have not given the support for pan gesture here. You can customise through DrawerView.swift And using below code you can access your pan gesture as per your desire.

let gestureRecognizer = UIPanGestureRecognizer(target: self, action: #selector(handlePan)) self.someDraggableView.addGestureRecognizer(gestureRecognizer)

Regards, ssowri1

rajkumar0143 commented 6 years ago

Thanks for support