0

基本上,一旦按下按钮,我需要每 5 秒左右刷新或重新加载一次 Web 视图。

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

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

}
4

1 回答 1

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];
}
于 2013-01-17T10:06:52.697 回答