I have made a small test app with a button and a UISlider. Touching the button changes its label text. I have added IBOutlet properties for both controls. I'm releasing all properties in viewDidUnload and also set them to nil in dealloc.
The interesting thing is now: I touch the button. Its tag is changed from "0" to "1" and, its text is updated: tag == 1 -> "B", tag == 0 -> "A". So the text says "B" now. Then I close the App (iPhones home button) and restart it. Still the button says "B"! How is that possible? Is the App not terminated?
Running on iOS4.1 here on an iPhone 4.
René