I wasn't a big fan of new in Objective-C. But this question raised the doubt. Why this does not compile?:
let j = NSNumber.new()
var s = NSString.new()
Looks like new() is a regular class method. Although in Apple's doc is defined with back ticks around the name ??
class func `new`() -> Self!
So, the question remains. If new() is there in NSObject, why does not compile? File Radar?