zoukankan      html  css  js  c++  java
  • loading的两种常用方式

    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...";

    }

  • 相关阅读:
    es6之class继承
    es6-class基本语法
    vue-cli3搭建pwa项目(一)
    vue 组件的通信方式
    react之组件&props
    React之元素渲染
    JSX
    JSX
    在项目中怎么使用react
    认识react
  • 原文地址:https://www.cnblogs.com/luseike/p/4251009.html
Copyright © 2011-2022 走看看