Paul Solt
Paul Solt
Is there going to be a new release for Swift 5?
Thank you! A warning is a great idea.
This is great. I've been meaning to do this myself. Thanks Matt!!! I'll try and take a look next week.
Thanks Matt, I'm going to merge in and refactor a lot of this tutorial. This extension was helpful! I think it's best for this view to return non-optional, so that...
Very cool, thanks for playing around with it!
I manually had to add this to Open Radar
I created Radar #30893066 Please duplicate it and get Apple's attention. http://www.openradar.me/30893066 There are a couple others you can duplicate or reference: http://www.openradar.me/27513087 http://www.openradar.me/28423208
@sindresorhus Any updates from Apple?
I think you can update this to use the notification: `UIDeviceOrientationDidChangeNotification` instead of `UIApplicationDidChangeStatusBarOrientationNotification` This code file is a `UIView`, so it won't have access to `viewWillTransitionToSize:withTransitionCoordinator` which is a...
Another option is to remove all this logic, as I don't think you really want it rotating anymore on modern iOS. ```objc - (void)registerForNotifications { #if !TARGET_OS_TV && !TARGET_OS_MACCATALYST NSNotificationCenter...