基本上我需要在按下按钮后每隔5秒左右刷新或重新加载一个Web视图。
我按下按钮时加载网页。但是我最初编写的计时器只是在指定时间后崩溃了。这就是我对按钮和Web视图所做的操作。
- (IBAction)SendGPSData:(id)sender {
NSURL *myURL =[NSURL URLWithString:@"http://www.google.co.uk"];
NSURLRequest *myRequest = [NSURLRequest requestWithURL:myURL];
[myWebView2 loadRequest:myRequest];
}
答案 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];
}