Post

Replies

Boosts

Views

Activity

Reply to subprojects to swift packages ?
I got side tracked but with few exceptions, these sub-projects I had exported to GitHub from their origins when they were self contained within their original app I'm now returning to. All was nice and simple. I mused just putting them back, within the app, but that seemed like a bad move, backward, just like using an older system / build environment which last worked and just continue there. One sub-project in particular - CocoaAsyncSocket, appears to have made the grade to SPM, so I'm wading towards that path for the others(6). Aside from explicit dependency entry in build settings, the subject of header resolution leads me to think that perhaps I shouldn't have or use such explicit inclusions, as otherwise the SPM and its definitions (headers) should be treated like any framework - black box?
Feb ’21
Reply to App's event handler for Safari, Finder Share Menu actions are no longer called in Big Sur
I should not that this app is already on the store now, it's just Big Sur execution fails to call my declared handler: func applicationWillFinishLaunching(_ notification: Notification) { 		NSAppleEventManager.shared().setEventHandler( 		self, 		andSelector: #selector(AppDelegate.handleURLEvent(_:withReply:)), 		forEventClass: AEEventClass(kInternetEventClass), 		andEventID: AEEventID(kAEGetURL) 		) }
Nov ’20