I’m having a view (lets say view1) that has a button to load an uiwebview. After loading the webview I need to show the view1 again.
How can I achieve this?
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.
[myWebView removeFromSuperView];If you want to animate easily, you can put the UIWebView in a separate view controller, present it as a modal view controller and run
[self dismissModalViewControllerAnimated:YES];in your controller when done.