You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
iPhone 6s will crash when trying to load the documents under vertical orientation.
Using storyboard method VC, set the flow direction for the collection view to be vertical.
under UICollectionViewDelegateFlowLayout->section vertical
the contentViewSize.width is 464.000000006 and the bounds.width is 464
By doing comparison between two value which equates to false and hence will go to fatal error.
You can refer to PDFSinglePageViewer.swift -> Line 172
Surprisingly, this only happens to iPhone 6s, it works will with my iPhone X and iPhone 4.
My suggestion would be by flooring the value for contextViewSize before comparing the value with bounds.
The text was updated successfully, but these errors were encountered:
iPhone 6s will crash when trying to load the documents under vertical orientation.
Using storyboard method VC, set the flow direction for the collection view to be vertical.
under UICollectionViewDelegateFlowLayout->section vertical
the contentViewSize.width is 464.000000006 and the bounds.width is 464
By doing comparison between two value which equates to false and hence will go to fatal error.
You can refer to PDFSinglePageViewer.swift -> Line 172
Surprisingly, this only happens to iPhone 6s, it works will with my iPhone X and iPhone 4.
My suggestion would be by flooring the value for contextViewSize before comparing the value with bounds.
The text was updated successfully, but these errors were encountered: