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
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)
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