Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have a UIWebView and a very simple line of code in the viewDidLoad:

[bandcamp loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://hatfilms.bandcamp.com"]]];

It works so that when I push a button, a new view loads and this is the code that is executed. Trouble is, when I then go to another view, and then go back to the webView ViewController, the webView reloads. When I play music in the webView, the music keeps playing but the webView reloads - like it's created another instance of itself.

How would I stop this from happening?

share|improve this question

1 Answer

Its because it's in the viewDidLoad method. Just make an IBAction so it doesn't happen every time the view loads.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.