我有一个网站,我在我的 ipad 的 UIWebview 中加载。5分钟后我刷新,问题是当页面刷新时你看到一个白色的闪光,是否可以用旋转的轮子替换这个白色的闪光?
我用这段代码做的刷新:
- (void)viewDidLoad
{
NSString *urlString = @"http://pmcuserportal.azurewebsites.net/pmc/index.php";
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webDisplayiPad loadRequest:request];
[NSTimer scheduledTimerWithTimeInterval:300 target:self selector:@selector(updateWeb) userInfo:nil repeats:YES];
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
-(void)updateWeb
{
[webDisplayiPad reload];
}