iOSPawan
iOSPawan

Reputation: 2894

viewController in other view controller

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?

Upvotes: 0

Views: 148

Answers (1)

Ole Begemann
Ole Begemann

Reputation: 135578

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.

Upvotes: 1

Related Questions