Mac 开发之加载动画框架

作者: 隐身人 | 来源:发表于2018-08-27 11:05 被阅读11188次

    最近因项目需要,本人写了内置六种加载动画的框架。
    现Git 开源,简洁使用,调用方便。

    先让大家浏览一下各个动画,如有需要,文末下载。

    加载动画示例

    使用步骤:

    1.导入框架


    框架

    2.引入头文件

    #import "MacProgressHUD.h"
    
    

    3.使用需要的动画块

    //纯文字(文本、时间)
    [MacProgressHUD showWaitingWithTitle:@"我是提示文字" time:5];
    
    //图标旋转(旋转速率、图片地址、时间)
    [MacProgressHUD showWaitingWithImgAnimationsSpeed:3 ImgURL:@"round" time:10];
    
    //圆圈循环旋转(圆圈颜色、旋转速率、时间)
    [MacProgressHUD showWaitingWithRoundColor:[NSColor whiteColor] speed:3 time:10];
    
    //点点(点颜色、点速率、时间)
    [MacProgressHUD showWaitingWithPointColor:[NSColor whiteColor] speed:3 time:10];
    
    //进度条(进度条颜色、进度速率、时间)
    [MacProgressHUD showWaitingWithProgressColor:[NSColor whiteColor] speed:2 time:10];
    
    //方块跳动(方块颜色、方块个数、上下幅度、跳动速率、时间)
    [MacProgressHUD showWaitingWithsQuareColor:[NSColor whiteColor] number:5 amplitude:5 speed:1 time:10];
    
    

    示例 下载

    相关文章

      网友评论

      本文标题:Mac 开发之加载动画框架

      本文链接:https://www.haomeiwen.com/subject/utsziftx.html