There are a few things I have started to do that I do not think are standard:

1) With the advent of properties, I no longer use "\_" to prefix "private" class variables.  After all, if a variable can be accessed by other classes shouldn't there be a property for it?  I always disliked the "\_" prefix for making code uglier, and now I can leave it out.

2) Speaking of private things, I prefer to place private method definitions within the .m file in a private category like so:

    #import "MyClass.h"
    
    @interface MyClass (private)
    - (void) someMethod
    - (void) someOtherMethod
    @end
    
    @implementation MyClass

Why clutter up the .h file with things outsiders should not care about?

3) I have taken to putting dealloc at the top of the .m file, just below the @synthesize directives.  Shouldn't what you dealloc be at the top of the list of things you want to think about in a class?  That is especially true in an environment like the iPhone.