I have always been wondering about that Xcode method styling. When you start writing some declared method it offers you autocompletion of whole method in one line like this:
_timer = [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(timerRefresh) userInfo:nil repeats:YES];
Is it possible to automatically arrange it like this:
_timer = [NSTimer scheduledTimerWithTimeInterval:5.0
target:self
selector:@selector(timerRefresh)
userInfo:nil
repeats:YES];
Thanks.