Steven Sorial

Results 8 issues of Steven Sorial

Adds #228 Usage: ```swift // Prefs.swift extension DefaultsKeys { var username: DefaultsKey { return .init("username") } var launchCount: DefaultsKey { return .init("launchCount", defaultValue: 0) } } // AppDelegate.swift func application(_...

Have you thought of adding ICloud support via `NSUbiquitousKeyValueStore`? I think it's a very reasonable feature to include and would fit well with the *Swifty* part of this library given...

### New Issue Checklist - [x] Updated SwiftLint to the latest version - [x] I searched for [existing GitHub issues](https://github.com/realm/SwiftLint/issues) ### New rule request `implicit_return` should also enforce explicit returns...

discussion

Fixes #33 which is a confusion caused by changes in #20. @krisk This is a minor change and does not change behavior.

* Add new iOS 16 initializers that support variable images. * Add a missing UIImage initializer that takes UITraitCollection, introduced in iOS 13. * Matched Apple docs for the initializers....

Trying to add a publisher to `UIImagePickerController` using a `DelegateProxy` My code: ```swift extension UIImagePickerController { var didFinishPickingMedia: AnyPublisher { let didPickSelector = #selector(UIImagePickerControllerDelegate.imagePickerController(_:didFinishPickingMediaWithInfo:)) return delegateProxy .interceptSelectorPublisher(didPickSelector) .map { $0[1]...

This PR builds on #223, and adds a command for installing runtimes `xcodes runtimes install 'iOS 14.5'` ~~Downloading will require an Apple account for new platforms released in 2022, it's...

**Description** `Decimal.FormatStyle` does not always respect the locale's decimalSeparator, also, the same error occurs with `FloatingPointFormatStyle` **Steps to reproduce** 1- Set the iPhone region to Germany. 2- Set the iPhone...

bug