So here's my current problem. I'm attempting to create a screensaver, all I'm doing is setting a background color like so,
public override func drawRect(rect: NSRect) {
super.drawRect(rect)
let color = NSColor(red:0.33, green:0.78, blue:0.99, alpha:1)
color.setFill()
NSBezierPath.fillRect(rect)
}
Fairly straight forward. I also set EMBEDDED_CONTENT_CONTAINS_SWIFT = YES;
Now when I go to install the .saver
file I am returned with a message that says
You cannot use the screensaver X with this version of OS X
Any ideas?