首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

UIWebView加载Loading成效

2012-07-02 
UIWebView加载Loading效果UIView *view [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)][v

UIWebView加载Loading效果

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];[view setTag:103];[view setBackgroundColor:[UIColor blackColor]];[view setAlpha:0.8];[self.view addSubview:view];UIActivityIndicatorView *activityIndicator = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 32.0f, 32.0f)];[activityIndicator setCenter:view.center];[activityIndicator setActivityIndicatorViewStyle:UIActivityIndicatorViewStyleWhite];[view addSubview:activityIndicator];[view release];

?

UIWebView需要指定自己为Delegate

?

//开始加载数据- (void)webViewDidStartLoad:(UIWebView *)webView {    [activityIndicator startAnimating];         }//数据加载完- (void)webViewDidFinishLoad:(UIWebView *)webView {[activityIndicator stopAnimating];    UIView *view = (UIView *)[self.view viewWithTag:103];[view removeFromSuperview];}

?

热点排行