码迷,mamicode.com
首页 > 其他好文 > 详细

loading的两种常用方式

时间:2015-01-26 18:58:57      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

loading的两种常用方式

1、

    UIActivityIndicatorView *loadingView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];

    [self.tableView addSubview:loadingView];

    [loadingView startAnimating];

    // 居中

    loadingView.centerX=self.view.centerX;

    loadingView.centerY=self.tableView.height*0.4;

 

    self.loadingView = loadingView;

 [self.loadingView stopAnimating];

 

2、

- (void)webViewDidFinishLoad:(UIWebView *)webView {

    [MBProgressHUD hideHUDForView:self.view animated:YES];

}

 

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {

    [MBProgressHUD hideHUDForView:self.view animated:YES];

}

 

- (void)webViewDidStartLoad:(UIWebView *)webView {

    MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];

    hud.mode = MBProgressHUDModeIndeterminate;

    hud.labelText = @"Loading...";

 

}

loading的两种常用方式

标签:

原文地址:http://www.cnblogs.com/luseike/p/4251009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!