A: 

There is something in your application code that is leaking. The UIApplicationMain function is the entry point of the stack trace, if you follow the calls down into your application code, that is where you will find the leak.

If you can identify the method that seems to be leaking, you can post that code, and someone might be able to help more.

Andy White
A: 

Start with the basics. Make sure that you are releasing all of your UI controls and business objects in the first object that is loaded. Make sure all resources during initalizition is properly released and then ensure you are instating things correctly. Are you using the pattern like?:

UIButton *btn = [[UIButton alloc] init]; //not really complete...
myObj.myButton = btn;
[btn release]

Finnally if nothing else step though the code in your mind and identify when something is being alloc and then identify the exact point that it is being released. If you can't identify where the release is, you've probably found your memory leak. Find a solution and retest. It make take a while to identify every leak. I always assume that there are multiple sources until they or it is resolved.

Like Andy mentions, if you need more direct help you are going to need to post more code.

Frank V
+1  A: 

Are you running the tools on the device or the simulator? I've found that memory issues can be different between the two.

Nosredna
I'm running it on the simulator. Haven't tried the phone yet.
Meroon
Try the phone. May provide some insight.
Nosredna
Tried the phone and no leak. Thanks dude!! But this creates a new question then as to why the simulator leaks but the phone itself doesn't. Weird.
Meroon
It is possible to have system leaks in the Simulator's version of Foundation that are not in the device's version, but this is pretty rare. Cocoa (as in AppKit) has several small leaks in it, but Foundation tends to be pretty solid in my experience. I haven't seen a lot of leaks in UIKit yet, though they wouldn't shock me. Always assume that repeating or large leaks are yours. When Apple leaks, it's generally one object here and there.
Rob Napier
I've had a couple leaks in the simulator that didn't make any sense to me and that went away on the device. Glad yours was similar.
Nosredna
Cool, thanks for all your help!
Meroon