I created a Cocoa Touch Framework module in Xcode 6.0.1 with Class implemented in Swift and I get it imported into my View Controller and use it normally. The problem is that I can not use the same code in the Playground created in the same project.
In Playground the module is recognized but the class contained in it is not.
My class is declared in JSON.swift like this:
public class JSON {
// meu código Swift
}