I have a UITableView as my first screen with a UINavigation controller.
UITableView
UINavigation
In my first screen I NSLog(@\"Home Screen retain Count=%d\",[
NSLog(@\"Home Screen retain Count=%d\",[
It sounds fine. Why would it be wrong?
In general, trying to determine things from the retain count is a bad idea. There are no rules about the amount of times you can retain an object. The only rule is that each retain must be balanced with a release.