You can force the views to keep a inferred min and max width/height by using AutoLayout, but what if you’re working with several views simultaneously? Wouldn’t it be simpler to have a window min and max width/height? Just add the following in your NSWindowController: override func windowDidLoad() { super.windowDidLoad() …
Tag Archives: nsview
Simple Animations on macOS (Swift 3)
If you’ve ever coded for iOS you’ll most likely be familiar with the UIView animateWithDuration function. Wouldn’t it be great if there would be an OSX equivalent? Well, there sure is, just type the following: NSAnimationContext.runAnimationGroup({_in //Indicate the duration of the animation …
Mouse Down (NSEvent in Swift 2)
As I continue adding features for my upcoming app I’m starting to work with NSEvents to add actions to user interaction. I’ve been amazed at how fast is to do this in Swift. For instance, detecting where the user presses a button in your window, and then converting it to the coordinate system of a …