What i don't really see in the docs is how to calls to objective-c methods are sorted out. For instance, if I have an objective-c class with a method -(void)addNumber:(NSNumber*)num withString:(NSString*)str; How is this called in swift? Is it myobj.addNumber(42, withString:"Hello World")?
myobj.addNumber(42, withString:"Hello World")
edit: I see you removed your equals - your guess is now correct :)for more details, see this link on apple's docs (may change)
https://developer.apple.com/library/prerelease/ios/documenta...