如果我的应用程序启动,我想通过“didFinishLaunchingWithOptions”预加载一个 URL。这时候我直接调用ViewController中的URL,但是到内容的时间太长了,所以我想直接从URL中看到内容。
这时候在我的ViewController viewDidLoad中:
[myWebView loadRequest:[NSURLRequest requestWithURL:
[NSURL URLWithString:NSLocalizedString(@"URL_today",@"URL-Calendar")]]]; // I localize the URL ;-)
loadingTimer = [NSTimer scheduledTimerWithTimeInterval:(1.0/2.0) target:self selector:@selector(loading) userInfo:(nil) repeats:YES];
所以,我想我必须在我的 AppDelegate 中创建一个方法。
- (void) callURL{
[myWebView loadRequest:[NSURLRequest requestWithURL:
[NSURL URLWithString:NSLocalizedString(@"URL_today",@"URL-Calendar")]]];
loadingTimer = [NSTimer scheduledTimerWithTimeInterval:(1.0/2.0) target:self selector:@selector(loading) userInfo:(nil) repeats:YES];}
比调用“didFinishLaunchingWithOptions”中的方法
[self callURL];
现在我必须在 ViewController 中的 webView 中调用结果 - viewDidLoad:
[URL-RESULT-show ]
有没有人有想法,怎么做?谢谢。