0

我的应用程序中有一个 WebView 可以正常工作,但加载速度很慢。有没有办法在应用程序启动后立即开始加载 Web 视图?

谢谢

 [EconCalWebView setDelegate:self];
// Do any additional setup after loading the view.
NSURL *myURL = [NSURL URLWithString:@"http://www.forexyard.com/en/calendar.iframe?zone_id=9493"];
NSURLRequest *myRequest = [NSURLRequest requestWithURL:myURL];
[EconCalWebView loadRequest:myRequest];
4

1 回答 1

0

您可以编写代码以在以下位置加载 webview:

applicationDidFinishLaunchingAppDelegate 类中可用的方法。

在这里你需要先加载你的viewController,然后再加载webView。

请在以下位置找到更多详细信息:UIApplicationDelegate

于 2013-06-30T15:20:53.310 回答