Eric Amorde
Eric Amorde
Compare with https://github.com/square/workflow-swift/pull/208 and https://github.com/square/workflow-swift/pull/210 ## Pros * More concise observer protocol definition * Easily portable to other observation systems (ex. FRP frameworks) by passing the types through * Can...
Compare with https://github.com/square/workflow-swift/pull/208 and https://github.com/square/workflow-swift/pull/209 ## Pros * Concise observer protocol definition * Concise list of events * Enum enables switching over all possible events * Somewhat portable to other...
Compare with https://github.com/square/workflow-swift/pull/209 and https://github.com/square/workflow-swift/pull/210 ## Pros * Matches existing APIs for `Workflow` observation * Adding new events is mostly backwards compatible (via default implementation in protocol extension) ## Cons...
From the [release notes](https://developer.apple.com/documentation/xcode_release_notes/xcode_11_4_beta_3_release_notes): > Build settings have a new evaluation operator, default, which you can use to specify the default value of a build setting if it evaluates to...
Whenever a type comes from an API that Swiftify can't see (ex. from an `@import SomeFramework;`) it assumes the object is `nullable`. `test.h`: ```objective-c @import Foundation; @interface SomeOtherObject: NSObject @end...