|
|
|
|
|
by jitl
2223 days ago
|
|
See also the blog post: https://kofi.sexy/blog/multi The swift-only, programmatic approach without Xcode or the typical app framework is very cool! Assembling those parts seems like a great learning experience. (More interesting to me than the actual functionality) |
|
> NSMakeRect/NSMakePoint
Generally I prefer the actual constructors.
> NSWindow.BackingStoreType.buffered/NSApplication.ActivationPolicy.regular
You can just use .buffered/.regular.
> let _ = NSApplication.shared
Just _ = NSApplication.shared works: https://github.com/saagarjha/DarkNight/blob/0e3aef8559b634ce...
> Rizwan Sattar wrote a neat workaround that monkey-patches NSBundle, which I’ve translated to Swift 4 below
Don't do this, it will stop working (crash!) once you update your Swift version and the compiler is smart enough to start making direct calls. As far as I am aware, this is the correct way to do it: https://github.com/saagarjha/DetailsViewer/blob/master/Detai...