I have a local HTML page which doesn't has any external link(css or images..)
I use method below to load it to a WebView
- (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName baseURL:(NSURL *)baseURL;
it takes around 5-8 seconds to load this page, that's too slow. right?
but when I load that page in iPhone safari, it takes around 2 second.
I don't know why it is slow like that in my WebView.
I also did a Google search, but I couldn't find any answer.