Tagged Questions
2
votes
0answers
117 views
XCode: “Refactoring to new Objective-C syntax” and round brackets
I'm wondering why XCode refactors this
[self.aDictionary objectForKey:@"aKey"]
to this
(self.aDictionary)[@"aKey"]
and not simply
self.aDictionary[@"aKey"]
That should work fine, too, or is ...
1
vote
3answers
85 views
looking for a CLI program to do text transformation on Objective-C code
I'm trying to find a command line program to do code / text transformations on Objective-C code.
E.g.: all method calls of type [obj call:aMethod with:params]; should be transformed to [obj re:params ...