Quote:
Originally Posted by Marco
I moved the code in the - (void)viewWillAppear  BOOL)animated {} and its now refreshing the page every time. I am assuming this is the best way of doing this?
|
A slightly better way is to use:
- (void)viewWillAppear

BOOL)animated {
[webView reload];
... //if you assign delegate, make sure it's after reload line.
}