Here’s a quick tip on how to open a URL in the background or foreground depending on a user-set preference. if(openInBackgroundPreferenceSet == true){ NSWorkspace.shared.open([linkToOpen], withAppBundleIdentifier: nil, options: NSWorkspace.LaunchOptions.withoutActivation, additionalEventParamDescriptor: nil, launchIdentifiers: nil) }else{ NSWorkspace.shared.open(linkToOpen) } Questions / comments? I’m at @MarcMasVi …
Monthly Archives: December 2017
How far ahead of Apple Maps is Google Maps?
Extremely good article explaining why Google Maps is ahead on many areas ahead of Apple maps. Worth your time: link Marc