1) Open up XCode
2) Create a new Project (iPhone OS->Application->View Based Application) *Make sure to set the product to iPad
3) Add a PNG file (This is what I am using) to the resources folder.
4) Open up either of the two XIB files that comes with your project in the Interface Builder by double-clicking
5) Click on Media and drag your image onto the big empty space
6) Save and quit Interface Builder
7) Build the project
8) In XCode, go to Run, Run with Performance Tool, Leaks
9) Watch the memory leak!
Anyone know why this happens or how to fix/prevent it? My app is done and as far as I can tell I have no leaks of my own but this one is driving me insane. The fact that I can get it to happen just by making a new app and adding an image bothers me.

I tried making it an IBOutlet of my app's delegate and releasing it in the dealloc method but get the same result.