I use SWRevealViewController in a lot of my projects. Since updating to Swift 3 with an iOS deployment target of 10.0 or higher, I am now getting a warning Method 'pauseInteractiveTransition' in protocol 'UIViewControllerContextTransitioning' not implemented in SWRevealViewController.m
I see that this is a required for UIViewControllerContextTransitioning but I have no idea how to implement it. So I just added this
- (void)pauseInteractiveTransition {
// not implemented
}
Everything is working fine but I want to know if there is something else I should do.