RGPageViewController
RGPageViewController copied to clipboard
A custom UIPageViewController written in Swift
App is crashing on iOS 11 and below but working perfectly fine on iOS 12 using xcode 11. Collectionview Cell is being returned nil in iOS 11 on dequeCell withIdentifier.
How to remove bounces effect?
Not sure if anyone else has had this issue but I've just tested one of my applications with xCode 9 beta and iOS 11 beta and all of a sudden...
1. I add UITableiViewController to Example's storyboard 2. code change below ` func pageViewController(_ pageViewController: RGPageViewController, viewControllerForPageAt index: Int) -> UIViewController? { if (movies.count == 0) || (index >= movies.count)...
Does anyone have this working well? It seems to not be consistent, instead of switching views at bottom of list it switches sometimes before. Sometimes it does not switch at...
How to change Y position of Tab bar , any delegate method for that?
@eRGoon Hi, I want to show next viewcontroller's some part in the current viewcontroller so that user can know that he can swipe to go through different viewcontrollers.
Hi, above mentioned problem presents itself when adding: `func pageViewController(_ pageViewController: RGPageViewController, willChangePageTo index: Int, fromIndex from: Int) { print("Will change page") }` I inserted it into your example and...
Hi I'm using RGPageViewController with multiple tabs and its working good But when I try to use it with only 1 tab its freezing in the below line tabScrollView.layoutIfNeeded() Do...