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.

Also of interest, are some good iPhone specific tips from Joseph Mattiello (received in an iPhone mailing list).  There are more, but these were the most generally useful I thought:

4) - Avoid doubles!
Another tip. The iphone DOES NOT support ANY double precision  
calculation natively. These are also emulated using libraries. Only  
use double precision if you have to, CoreLocation for instance. Make  
sure you end your constants in 'f' to make gcc store them as floats.
  ex, float val = someFloat * 2.2;
should be. This is mostly important when someFloat may acually be a  
double, you don't need the mixed mode math, since you're losing  
precision in 'val' on storage.
	float val = someFloat * 2.2f;

5) Properties
	Set your properties as nonatomic. They're atomic by default and upon  
synthesis semaphore code will be created to prevent multi-threading  
problems. 99% of you probably don't need to worry about this and the  
code is much less bloated and memory efficient when set to nonatomic.

6) SQLite
	Sql can be a very, very fast way to cache large data sets. A  
map application for instance can cache it's tiles into SQLite files. The most  
expensive part is disk I/O.  Avoid many small write by sending
	BEGIN;
and
	COMMIT;

between large blocks. We use a 2 second timer for instance that  
resets on each new submit. When it expires, we send COMMIT; , which  
causes all your writes to go in one large chunk. It's store in RAM   
until then, so don't wait tooooo long.

Also, SQL will block you GUI if it's on your main thread. It's a good  
idea to store your queries at static objects, and run your sql on a  
separate thread. Make sure to wrap anything that modifies the data  
base for query strings in @synchronize() {} blocks