I downloaded the Lister "Productivity App" (Version 1.4, 2014-10-16) sample project from Apple:
https://developer.apple.com/library/ios/samplecode/Lister/Introduction/Intro.html#//apple_ref/doc/uid/TP40014701
I have Xcode 6.0.1 running on OS X 10.10 (Yosemite). The Objective-C version runs great. The Swift version fails in its build with four errors:
/Users/ben/Downloads/ListerAProductivityAppObj-CandSwift/Swift/ListerKit/ListDocument.swift:61:114: 'List.Color' does not have a member named 'rawValue'
/Users/ben/Downloads/ListerAProductivityAppObj-CandSwift/Swift/ListerKit/ListUtilities.swift:103:31: Bound value in a conditional binding must be of Optional type
/Users/ben/Downloads/ListerAProductivityAppObj-CandSwift/Swift/Common/List.swift:126:22: 'List.Color' cannot be constructed because it has no accessible initializers
/Users/ben/Downloads/ListerAProductivityAppObj-CandSwift/Swift/Common/List.swift:131:30: 'List.Color' does not have a member named 'rawValue'
I wonder why doesn't the sample project compile out of the box? The setup is as per the README.md
.