Quote:
Originally Posted by vakio
I don't know if anyone's filed a bug report but I've filed one. I think the more bug reports, the more they're likely to fix something.
|
Ok, good to know. Maybe there is a way I can confirm that I also experienced the bug you've filed (sorry if this is a silly question - I have little experience in filing a bugs to Apple

)
I also want to confirm, that your solution to the problem - making fake UIWebView at application start works like a charm!
If someone is interested, how to achieve this:
I've modified the code i posted above in such a way:
In AppDelegate .h file, I added a field:
Code:
UIWebView *fakeWebView;
Then in implementation of AppDelegate .m file, I enhanced applicationDidFinishLaunching and dealloc methods:
Code:
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Override point for customization after app launch
[window addSubview:[navigationController view]];
[window makeKeyAndVisible];
fakeWebView = [[UIWebView alloc] init];
[fakeWebView loadHTMLString:[NSString stringWithFormat:@"<html><body>%@</body></html>", @"Fake"] baseURL:nil];
}
#pragma mark -
#pragma mark Memory management
- (void)dealloc {
[navigationController release];
[window release];
[fakeWebView release];
[super dealloc];
}
Many thanks to you, vakio!