I can\'t seem to find it in the docs, and I\'m wondering if it exists in native Swift. For example, I can call a class level function on an NSTimer like so:
NSTimer
UPDATED: Thanks to @Logan
With Xcode 6 beta 5 you should use static keyword for structs and class keyword for classes:
static
class
class Foo { class func Bar() -> String { return "Bar" } } struct Foo2 { static func Bar2() -> String { return "Bar2" } }