Our style guide says (for whatever reason that isn't important to this question) no space between the type and the *
in selector definitions.
I.e., this is bad:
- (void)foo:(Foo *)foo {
...and this is good:
- (void)foo:(Foo*)foo {
Is there a way to tell XCode's auto-complete to stop doing the bad thing and do the good thing?