zoukankan      html  css  js  c++  java
  • SVProgressHUD进度条蒙版

    GitHub:https://github.com/samvermette/SVProgressHUD
    SVProgressHUD和MBProgressHUD效果差不多,不过不需要使用协议,同时也不需要声明实例。
    直接通过类方法进行调用即可:

    [SVProgressHUD method]

    可以使用以下方法来显示状态:

    + (void)show;
    + (void)showWithMaskType:(SVProgressHUDMaskType)maskType;
    + (void)showWithStatus:(NSString*)string;
    + (void)showWithStatus:(NSString*)string maskType:(SVProgressHUDMaskType)maskType;

    如果需要明确的进度,则使用以下方法:

    + (void)showProgress:(CGFloat)progress;
    + (void)showProgress:(CGFloat)progress status:(NSString*)status;
    + (void)showProgress:(CGFloat)progress status:(NSString*)status maskType:(SVProgressHUDMaskType)maskType;

    通过dismiss方法来隐藏提示:

    + (void)dismiss;

    另外提供了以下方法用于显示状态,并在1秒后自动隐藏提示

    + (void)showSuccessWithStatus:(NSString*)string;
    + (void)showErrorWithStatus:(NSString *)string;
    + (void)showImage:(UIImage*)image status:(NSString*)string;// use 28x28 white pngs 

  • 相关阅读:
    py2exe
    Python库
    Python正则表达式指南
    [Python]日志模块logging的应用
    [Python]python __init__.py
    如何安装配置ulipad
    [Python]如何快速知道要使用哪些python模块和有哪些功能
    CodeIgniter
    Python 绝对简明手册
    理解Python命名机制
  • 原文地址:https://www.cnblogs.com/langji/p/5347791.html
Copyright © 2011-2022 走看看