|
|
|
|
|
by protomyth
3797 days ago
|
|
I do wish the Swift developers had allowed actual Objective-C calls in Swift to make it look the same. Objective-C [aPath addLineToPoint:CGPointMake(200.0, 40.0)];
proposed aPath.(addLineToPoint:CGPoint(200.0, 40.0));
the more complicated example would be:Objective-C [object selector1:item1 selector2:item2];
to object.(selector1:item1, selector2:item2);
although I'm still not sure about the love of commas |
|