0

在我的APP中大约需要10s loadHTMLString,谁能指出什么问题?

- (void)viewDidLoad {
    [super viewDidLoad];
    webView = [[UIWebView alloc]initWithFrame:CGRectMake(10, 10, SCREEN_WIDTH, 480)];
    [webView setBackgroundColor:[UIColor clearColor]];
    [webView setOpaque:NO];
    webView.delegate = self;
    [scrollView addSubview:webView];
}

进入视图后,如果我收到消息:

- (void)updateJournalView:(NSArray *)journals {
    NSString *descHtml = [self getHtmlDesc:journals];
    [webView loadHTMLString:descHtml baseURL:nil];
 }

getHtmlDesc方法将快速返回 html 字符串。

从加载日志中,您可以看到加载大约需要 5 秒。

2012-11-26 20:34:35.322 测试[8456:c07] ====开始加载 2012-11-26 12:34:35 +0000:

2012-11-26 20:34:39.890 测试[8456:c07] ====完成加载 2012-11-26 12:34:39 +0000:

以下是 UIWebViewDelegate 方法:

- (void)webViewDidFinishLoad:(UIWebView *)aWebView {
 CGRect frame = aWebView.frame;
 frame.size.height = 1;
 aWebView.frame = frame;
 CGSize fittingSize = [aWebView sizeThatFits:CGSizeZero];
 frame.size = fittingSize;
 aWebView.frame = frame;
 scrollView.contentSize = CGSizeMake(SCREEN_WIDTH, fittingSize.height);
 NSLog(@"====finish load %@:", [NSDate date]);
}

  - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest    *)request
navigationType:(UIWebViewNavigationType)navigationType {
  NSURL *url = [request URL];
  if ([[url scheme] isEqualToString:@"redirect"] &&
  [[url host] isEqualToString:@"opp_detail"]) {
  NSString *oppIdStr = [[url path] stringByReplacingOccurrencesOfString:@"/player_id=" withString:@""];
  if (oppIdStr && [oppIdStr length]) {
    NSNumber *oppId = [NSNumber numberWithInt:[oppIdStr intValue]];
    if ([oppId intValue] != gcontext.me.id) {
      [screenNav gotoOppDetailScreen:[oppId intValue]];
    }
  }
 }
 return YES;
}

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request
navigationType:(UIWebViewNavigationType)navigationType {
 NSURL *url = [request URL];
 if ([[url scheme] isEqualToString:@"redirect"] &&
  [[url host] isEqualToString:@"opp_detail"]) {
  NSString *oppIdStr = [[url path] stringByReplacingOccurrencesOfString:@"/player_id="   withString:@""];
 if (oppIdStr && [oppIdStr length]) {
  NSNumber *oppId = [NSNumber numberWithInt:[oppIdStr intValue]];
  if ([oppId intValue] != gcontext.me.id) {
    [screenNav gotoOppDetailScreen:[oppId intValue]];
  }
}
}
return YES;
}

- (void)webViewDidStartLoad:(UIWebView *)webView{
  NSLog(@"====start load %@:", [NSDate date]);
}

请帮我一把,为什么用的时候这么loadHTMLStringUIWebView

4

1 回答 1

0

如果没有什么重的渲染,那么很可能所有关于缓慢的磁盘操作,当您读取您的 html 字符串时正在执行。

https://stackoverflow.com/a/3400892/1851930

于 2012-11-26T12:46:18.487 回答