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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
viewWillAppear:is only called by the framework when you use the built-in view controller transitions likepresentModalViewController:animated:orpushViewController:animated:. In other cases, you have to callviewWill/Did(Dis)Appear:yourself.