tags:

views:

18

answers:

1

Hi when i try to call view controller view in to another view controller . that time there delegate method like viewWillAppear: does not call .

any Suggestion?

A: 

viewWillAppear: is only called by the framework when you use the built-in view controller transitions like presentModalViewController:animated: or pushViewController:animated:. In other cases, you have to call viewWill/Did(Dis)Appear: yourself.

Ole Begemann