tags:

views:

12

answers:

1

How to set an image on another view on dismissing current view in iphone??

A: 

It sounds like you want this to happen when a view disappears. When a view is unloaded various methods get called. I think one of them is called viewDidUnload, check the docs for UIView and see what methods it has.

mtc06