Topic
Nsviewcontroller
A browsable archive of writing and notes across the site.
Post
How to find a Mac app's BundleID
Every iOS and macOS app stores its configuration in a plist file, and the app’s BundleID lives in there alongside the version number. Read the plist and you’ve got …
Post
A few notes on LetsMove
When you download a Mac app from the web, it usually ends up in your Downloads folder. But some apps really need to live in /Applications to work properly — self-update being the …
Post
XPC Services
About XPC I’ve been doing some work in this area lately, so here are my notes — a quick recap of what XPC is and how it works. XPC is the umbrella term for inter-process …
Post
Codable && Tuple
While learning Swift, I keep finding interesting things. Codable is one of them. Today, I defined a model with a tuple type, then Xcode gave me an error. The code might look like …
Post
How to generate a NSViewController without a Nib?
Recently, I created all the ViewControllers through the storyboard or the Nib (for views). Today, when I created a demo project without any Nib file, the ViewController did not …