アプリが起動したら、「 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 ]
アイデアはありますか、どうすればいいですか?ありがとう。