Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swiping the onboarding not working in iOS 13 #116

Closed
NanoMeko opened this issue Oct 9, 2019 · 2 comments
Closed

Swiping the onboarding not working in iOS 13 #116

NanoMeko opened this issue Oct 9, 2019 · 2 comments

Comments

@NanoMeko
Copy link

NanoMeko commented Oct 9, 2019

No description provided.

@BillBunting
Copy link

BillBunting commented Oct 9, 2019

I can confirm the same problem. But, there is an easy fix for iOS 13. If you set the modal presentation style on the containing view controller to Full Screen, it will swipe correctly. The default presentation is now page sheet, not full screen, which does not work with the current version of paper-onboarding.

Objective C

vc.modalPresentationStyle = UIModalPresentationFullScreen;

Swift

vc.modalPresentationStyle = .FullScreen

https://developer.apple.com/documentation/uikit/uimodalpresentationstyle/fullscreen

@aheze
Copy link

aheze commented Jul 7, 2020

I made a pull request that fixes this, without forcing presentation in full screen.
#124 (comment).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants