WebView自动重新加载Xcode

时间:2013-01-17 09:58:21

标签: iphone xcode webview reload

基本上我需要在按下按钮后每隔5秒左右刷新或重新加载一个Web视图。

我按下按钮时加载网页。但是我最初编写的计时器只是在指定时间后崩溃了。这就是我对按钮和Web视图所做的操作。

- (IBAction)SendGPSData:(id)sender {
    NSURL *myURL =[NSURL URLWithString:@"http://www.google.co.uk"];
    NSURLRequest *myRequest = [NSURLRequest requestWithURL:myURL];
    [myWebView2 loadRequest:myRequest];

}

1 个答案:

答案 0 :(得分:3)

UIButton

- (IBAction)SendGPSData:(id)sender 
  {
   [webView reload];

  }

NSTimer

[NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(WebViewLoad:) userInfo:nil repeats:NO];

-(void)WebViewLoad:(NSTimer *)theTimer
{
[webView reload];
}