Downloaded Menubar app but could not build under Xcode 6.1. Error was AppDelegate.swift:21:9: 'NSImage?' does not have a member named 'setTemplate'
I changed line 21 from icon.setTemplate(true) to icon?.setTemplate(true) and had no issues.
Just an fyi. I guess this is due to Swift 1.1 Failable Initializers. Thanks for the examples.