EZSwipeController icon indicating copy to clipboard operation
EZSwipeController copied to clipboard

:point_up_2: UIPageViewController like Snapchat/Tinder/iOS Main Pages

Results 24 EZSwipeController issues
Sort by recently updated
recently updated
newest added

Is there any plan to provide Swift 4 support yet?

Here's my code: ```swift extension SwipeController: EZSwipeControllerDataSource { func viewControllerData() -> [UIViewController] { let redVC = UIViewController() redVC.view.backgroundColor = .red let blueVC = UIViewController() blueVC.view.backgroundColor = .blue let greenVC =...

When I try to call moveToPage from another class it fails on this line: ` let currentIndex = stackPageVC.index(of: currentStackVC)!` with the error: `fatal error: unexpectedly found nil while unwrapping...

Hi, I'm using navigationController.push(EZSwipeController) to push a new EZSwipeController into navigation stack, but it seems to break iOS's swipe right to return.

I have a tableview inside of a swipe controller, but i can't seem to swipe when im swiping on the cells. if i swipe in the section header it allows...

The pull request you merged 7 days ago (from bryant1410), caused some problems for me. Im using Cocoapods and NeverCode (to push my test builds to HockeyApp), and everytime NeverCode...

`class FeaturedSwipeViewController: EZSwipeController, UIGestureRecognizerDelegate { let seg = UISegmentedControl(items: ["1", "2"]) var advisor: Advisor! override func setupView() { super.setupView() datasource = self navigationBarShouldNotExist = true } override func viewDidLoad() {...

is there an objective-c version

Hi There - Do you have a recommendation on the best way to add a hint animation that there are other views for the user to swipe to? On the...