I have a method:
- (void)pan:(double)lat longitude: (double) lon{...}
When I call it Xcode shows to like this:
[self pan:(double) longitude:(double)]
Isn't it possible to set first parameter somehow, like the second (longitude)
, that Xcode could show like this:
[self pan: latitude:(double) longitude:(double)]
It is very annoying for me that I can not see the name of the first parameter when calling. Is it my fault or it is impossible?