Malcolm Hall

Results 133 comments of Malcolm Hall

the readme still has [release] in it when the project has been updated for ARC!

Would be helpful if you added this to the readme: Require line to use in composer: "phayes/geophp": "dev-master"

I'm only seeing `UIApplicationLaunchOptionsLocationKey` on simulator and device (17.4) when scene lifecycle is disabled by removing the manifest from the Info.plist. When scenes are enabled, both the app delegate launchDict...

Yep this package isn't needed, this worked for me inside my tweak: ``` @interface LSApplicationWorkspace - (BOOL)isApplicationAvailableToOpenURL:(id)arg1 error:(id*)arg2; @end static IMP original_LSApplicationWorkspace_isApplicationAvailableToOpenURL_error; static BOOL replaced_LSApplicationWorkspace_isApplicationAvailableToOpenURL_error(LSApplicationWorkspace* self, SEL sel, NSError** error){...

When they restrict something sometimes there is an entitlement that can enable it again.

The problem is eventSequence is an instance var of a class but it should be a computed var so it can be created by multiple clients, since that is the...

Continuations are for bridging between delegates/closures to async. Since you say your design already is async perhaps you could have a collection of [`Channel`](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Channel.md)s, one per client: Then you might...

Here is an implementation that did choose to use a collection of continuations: https://github.com/reddavis/Asynchrone/blob/main/Sources/Asynchrone/Sequences/SharedAsyncSequence.swift

I've looked into this and learned the best way to implement multiple consumers of the eventSequence is for the client to hold an array of `AsyncChannel`s and send the event...

I was looking for a demo too and I found this [Apple Earthquakes one](https://developer.apple.com/library/content/samplecode/Earthquakes/Listings/Objective_C_Earthquakes_AAPLQuakesViewController_m.html#//apple_ref/doc/uid/TP40014547-Objective_C_Earthquakes_AAPLQuakesViewController_m-DontLinkElementID_7) that uses the new NSFetchedResultsController in 10.12 and NSTableView