How to reload a UIWebView on HomeButton press
问题 I want to reload a simple UIWebView I have loaded when the app opens and closes from the iPad Home Button. I've searched other questions, but none seem to fit as I don't want an extra button or Tab or something else in my app. I tried: - (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; [webView reload]; } but this doesn't react. My initialization code is in a controller derived from UIViewController and the UIwebview is initialized in - (void)viewDidLoad Any clue how to do