【发布时间】:2012-06-19 01:23:14
【问题描述】:
使用 UIWebView 时,某些应用在加载网站时会显示百分比。 我找到了一些方法,但不能正常工作,比如:
1.使用 NSUrlConnection 获取 HTML ,然后使用 UIWebView 加载 HTML
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
theTotalLength = response.expectedContentSize;
}
但是,有时没有“expectedContentSize”可供获取。
2.使用私有功能,但不能发布AppStore。此功能 enter link description here
有人知道吗?
【问题讨论】: