Switching NSViewControllers from NSWindowController

This has taken quite some time to crack as there was not that much available information online.  I wanted a very simple way to change the NSViewController of a window on the fly by using code.  The solution I ended up with is quite easy, on the NSWindowController I load the default NSViewController by typing …

Get NSDate Day, Month or Year in Swift 2.0

Looking for Swift 3.0 version? -> Click here  Well, having recharged batteries after vacation I’m back into coding! And yet again I was faced with another simple problem: how to get the day, month or year from a date.  This is the simpler solution I’ve found in Swift 2:   //Here I’m creating the calendar …

Dates & Components in Swift 2.0

Another topic that has been changed in Swift 2.0 is how to work with dates. I’m digging into this topic for my upcoming app and I’ve found that most documentation on the web refers to Swift 1.2. So here are some snippets to create dates using components: //CreateDateFromComponents (1st January 2016)        var …

Evaluate string width and return CGFloat (Swift, OSX)

This morning I’ve been working in a Swift function to detect the width of a given text and return a CGFloat.  I’ve not found that many examples on the web for OSX, so here you have what I’ve done in all of its glory: func evaluateStringWidth (textToEvaluate: String) -> CGFloat{     letfont = NSFont.userFontOfSize(NSFont.systemFontSize()) …

Android & Security

Great post from a long time Android user & security journalist. Worth a read: Goodbye, Android: http://t.co/p4QwqSx75P http://t.co/uiQ2lWiTeD Frankly I hope Google would change his ways on this.   Marc

Compatibility updates

Today both Excelling and Notio have been received a compatibility update to ensure they work great under iOS9. Provided that Apple approves them both should be available for users in about a week.  And now back to focusing on the new app.    Marc