yunnnyunnn
yunnnyunnn
Switching to node 14 solved the problem for me. I used [nvm](https://github.com/nvm-sh/nvm#profile_snippet) to switch from node 18 to node 14 without messing up the system version: `nvm install 14` `nvm...
Hey @ostatnicky , does the crash occur in iOS8 only? If yes, be aware that UIAlertView has been deprecated in iOS8. Use UIAlertController instead. Learn more about UIAlertController here: http://useyourloaf.com/blog/2014/09/05/uialertcontroller-changes-in-ios-8.html
I saw the Cocoapods instruction in the readme file so I thought you recommended it :smile: I will download it directly. Thanks tho :+1:
I have the same issue too.
+1 We are having the same problem. Downgraded to SDK 10.17.0 temporally. Please let us know when there's any update. Thank you!
+1 We are having the same problem. Downgraded to SDK 10.17.0 temporally. Please let us know when there's any update. Thank you!
Here's my workaround (in swift) @wraithseeker @andrew8712 : First, subclass `NYTPhotosViewController` like this: ``` class FixedPhotosViewController: NYTPhotosViewController { var shouldHideStatusBar = false override func prefersStatusBarHidden() -> Bool { return shouldHideStatusBar...