Skip to content
billgarrison edited this page Sep 14, 2010 · 2 revisions

Do we need one?

  1. vi vs emacs?
  2. { on method definitions: on same line, next line, or either?
    
    - (IBAction) send:(id)sender {
    ...
    }
    

    Versus
    
    - (IBAction) send:(id)sender
    {
    ...
    }
    
  3. Nasty indenting of multiparameter method invocations
    
    [someObject performSelectorOnBackgroundThread:@selector(bah:)
                                       withObject: theWindow
                                    waitUntilDone: NO];
    

    versus
    [someObject performSelectorOnBackgroundThread:@selector(bah:) withObject:theWindow waitUntilDone:NO];

Clone this wiki locally