KVNProgress

KVNProgress is a fully customizable progress HUD that can be full screen or not.

KVNProgress是一个可以完全定制的HUD,你可以设置成全屏或者不全屏.

Advantages - 特点

  • Can be full screen 可以全屏显示
  • Uses UIMotionEffect 使用了陀螺仪移动效果
  • Supports all orientations 支持所有方向
  • Supports iPad 支持iPad
  • Animates text update 文本更新具有动画效果
  • Animates success checkmark 成功时有动画效果
  • Is well documented 文档完整
  • Is fully customizable 可以高度定制

    • Colors 颜色
    • Fonts 字体
    • Circle size and thickness 圆形形状以及厚度

Requirements - 需要的环境

  • Xcode 5
  • iOS 7
  • ARC
  • Frameworks:
    • QuartzCore
    • GLKit

Installation - 安装

Cocoapods

CocoaPods recommended to use KVNProgress.

推荐使用CocoaPods来安装KVNProgress.

  1. Add pod 'KVNProgress' to your Podfile.
  2. Install the pod(s) by running pod install.
  3. Include KVNProgress wherever you need it with #import <KVNProgress/KVNProgress.h>.

Source files

  1. Download the latest code version or add the repository as a git submodule to your git-tracked project.  下载最新版本文件
  2. Drag and drop the ClassesCategories and also the Resources directory from the archive in your project navigator. Make sure to select Copy items when asked if you extracted the code archive outside of your project. 将文件Classes,Categories以及Resource拖到你的项目当中
  3. Include KVNProgress wherever you need it with #import <KVNProgress/KVNProgress.h>. 在需要使用的地方,引入头文件即可

Usage - 使用

Check out the provided demo app for many examples how you can use the components. 在demo中,你可以知道怎么使用这些组件

Basics

KVNProgress HUD will block the user from interacting with the interface behind it. You can customize colors, font and size of the HUD.

KVProgress HUD会屏蔽掉用户的交互,你可以定制颜色,字体以及HUD的尺寸

Add the following import to the top of the file or to your Prefix header:

将以下文件加到你的Prefix头文件中:

   #import <KVNProgress/KVNProgress.h>

Indeterminate progress - 不确定进度的情形

To show an indeterminate progress:

显示一个不确定进度的HUD:

   [KVNProgress show];

   // Adds a status below the circle
[KVNProgress showWithStatus:@"Loading"]; // Adds the HUD to a certain view instead of main window
[KVNProgress showWithStatus:@"Loading"
onView:view]; 

To change the status on the fly (animated):

动态修改状态值:

   [KVNProgress updateStatus:@"New status"];

Determinate progress - 确定进度的情形

To show a determinate progress and change its value along time:

显示一个有进度并随时改变值的情形:

   // Progress has to be between 0 and 1
[KVNProgress showProgress:0.5f]; // Adds a status below the progress
[KVNProgress showProgress:0.5f
status:@"Loading"]; // Adds the HUD to a certain view instead of main window
[KVNProgress showProgress:0.5f
status:@"Loading"
onView:view]; // Updates the progress
[KVNProgress updateProgress:0.75f
animated:YES]; 

Dismiss - 隐藏

To dismiss after your task is done: 任务完成后,你可以隐藏它了:

   // Dismiss
[KVNProgress dismiss];

When necessary, you can use: 如果有必要,你可以这么用:

   // Dismiss
[KVNProgress dismissWithCompletion:^{
// Things you want to do after the HUD is gone.
}];

Why? 为什么?

Because KVNProgress remains visible for a certain time even if you call dismiss. This is done to ensure the user has enough time to see the HUD if the load is too quick. The completion block indismissWithCompletion is called (on the main thread) after the HUD is completely dismissed. This amount of time is defined in the KVNProgressConfiguration object (explained below). Default value is0.3 seconds.

因为KVNProgress会在dismiss的时候延时显示一小段时间.这是为了确保不会因为加载太快而看不到HUD.indismissWithCompletion会在HUD完全消失后执行.你可以设置这个延时消失的时间. 其默认值为0.3秒

Success/Error 成功/出错

To show a success HUD with a checkmark: 显示一个成功的HUD

   [KVNProgress showSuccess];

   // Or
[KVNProgress showSuccessWithStatus:@"Success"]; // Adds the HUD to a certain view instead of main window
[KVNProgress showSuccessWithStatus:@"Success"
onView:view];

To show an error HUD with a cross: 显示一个错误的HUD

   [KVNProgress showError];

   // Or
[KVNProgress showErrorWithStatus:@"Error"]; // Adds the HUD to a certain view instead of main window
[KVNProgress showErrorWithStatus:@"Error"
onView:view];

Dismiss is automatic for successes and errors. If you want to do something after the dismissal, you can use the above methods with the final

对于成功或者出错,HUD会自动消失,如果你想在消失之后做些事情,你可以用以上方法。

parameter completionshowSuccessWithCompletion:,showSuccessWithStatus:completion:showSuccessWithStatus:onView:completion:,showErrorWithCompletion:showErrorWithStatus:completion:,showErrorWithStatus:onView:completion:.

Customization - 自定义

The appearance of KVNProgress is very customizable. If something is missing or could be added, don't hesitate to ask for it!

KVNProgress的可扩展性很好,有什么需要添加的,请毫不犹豫的给我提出来吧!

KVNProgressConfiguration

You can setup your HUD UI in your UI setups for your app using the KVNProgressConfiguration. Here is an example on how to simply set the default configuration for you HUD:

   [KVNProgress setConfiguration:[KVNProgressConfiguration defaultConfiguration]];

Note that if you just want the default configuration, the above code is not needed. If you do not set a configuration, the default one is taken ;)

Here is an example of a complete custom configuration:

   KVNProgressConfiguration *configuration = [[KVNProgressConfiguration alloc] init];

    configuration.statusColor = [UIColor whiteColor];
configuration.statusFont = [UIFont fontWithName:@"HelveticaNeue-Thin" size:15.0f];
configuration.circleStrokeForegroundColor = [UIColor whiteColor];
configuration.circleStrokeBackgroundColor = [UIColor colorWithWhite:1.0f alpha:0.3f];
configuration.circleFillBackgroundColor = [UIColor colorWithWhite:1.0f alpha:0.1f];
configuration.backgroundFillColor = [UIColor colorWithRed:0.173f green:0.263f blue:0.856f alpha:0.9f];
configuration.backgroundTintColor = [UIColor colorWithRed:0.173f green:0.263f blue:0.856f alpha:1.0f];
configuration.successColor = [UIColor whiteColor];
configuration.errorColor = [UIColor whiteColor];
configuration.circleSize = 110.0f;
configuration.lineWidth = 1.0f;
configuration.fullScreen = NO; [KVNProgress setConfiguration:configuration]; 

If you do not specify certain properties for a configuration, they will automatically be the default's one.

Display times

To avoid the user to see a blinking HUD or even don't see it at all if you are dismissing it too quickly, the HUD will stay display for a minimum (short) period of time.

There are 3 properties you can change that do that in KVNProgressConfiguration to do that:

  • minimumDisplayTime that has a default value of 0.3 seconds. It handles all HUD's except for success and error ones.
  • minimumSuccessDisplayTime that has a default value of 2.0 seconds. It handles all success HUD's.
  • minimumErrorDisplayTime that has a default value of 1.3 seconds. It handles all error HUD's.

Remains to do

  • Use real-time blur

[翻译] KVNProgress的更多相关文章

  1. 《Django By Example》第五章 中文 翻译 (个人学习,渣翻)

    书籍出处:https://www.packtpub.com/web-development/django-example 原作者:Antonio Melé (译者@ucag注:大家好,我是新来的翻译, ...

  2. 《Django By Example》第四章 中文 翻译 (个人学习,渣翻)

    书籍出处:https://www.packtpub.com/web-development/django-example 原作者:Antonio Melé (译者注:祝大家新年快乐,这次带来<D ...

  3. [翻译]开发文档:android Bitmap的高效使用

    内容概述 本文内容来自开发文档"Traning > Displaying Bitmaps Efficiently",包括大尺寸Bitmap的高效加载,图片的异步加载和数据缓存 ...

  4. 【探索】机器指令翻译成 JavaScript

    前言 前些时候研究脚本混淆时,打算先学一些「程序流程」相关的概念.为了不因太枯燥而放弃,决定想一个有趣的案例,可以边探索边学. 于是想了一个话题:尝试将机器指令 1:1 翻译 成 JavaScript ...

  5. 《Django By Example》第三章 中文 翻译 (个人学习,渣翻)

    书籍出处:https://www.packtpub.com/web-development/django-example 原作者:Antonio Melé (译者注:第三章滚烫出炉,大家请不要吐槽文中 ...

  6. 《Django By Example》第二章 中文 翻译 (个人学习,渣翻)

    书籍出处:https://www.packtpub.com/web-development/django-example 原作者:Antonio Melé (译者注:翻译完第一章后,发现翻译第二章的速 ...

  7. 《Django By Example》第一章 中文 翻译 (个人学习,渣翻)

    书籍出处:https://www.packtpub.com/web-development/django-example 原作者:Antonio Melé (译者注:本人目前在杭州某家互联网公司工作, ...

  8. 【翻译】Awesome R资源大全中文版来了,全球最火的R工具包一网打尽,超过300+工具,还在等什么?

    0.前言 虽然很早就知道R被微软收购,也很早知道R在统计分析处理方面很强大,开始一直没有行动过...直到 直到12月初在微软技术大会,看到我软的工程师演示R的使用,我就震惊了,然后最近在网上到处了解和 ...

  9. ASP.NET MVC with Entity Framework and CSS一书翻译系列文章之第一章:创建基本的MVC Web站点

    在这一章中,我们将学习如何使用基架快速搭建和运行一个简单的Microsoft ASP.NET MVC Web站点.在我们马上投入学习和编码之前,我们首先了解一些有关ASP.NET MVC和Entity ...

随机推荐

  1. 使用Rectangle+ImageBrush来代替Image,解决图片模糊的问题

    <Rectangle Margin="0" Stroke="Black" HorizontalAlignment="Right" Wi ...

  2. IOS贝塞尔曲线圆形进度条和加载动画

    做项目让做一个加载动画,一个圈圈在转中间加一个图片,网上有好多demo,这里我也自己写了一个,中间的图片可加可不加.其中主要用到贝塞尔曲线.UIBezierPath是对CGContextRef的进一步 ...

  3. 相片Exif协议

    今天看他们安卓在做项目遇到一个要让旋转拍摄的相片竖屏方向显示 ,网上搜了下找到了安卓的一个博客,看了下想着既然安卓有ios也应该会有,果然不出所料,确实是有.其实他们都是遵循Exif协议,百度百科也有 ...

  4. jQuery全屏滚动插件fullPage.js中文帮助文档API

    jQuery全屏滚动插件fullPage.js中文帮助文档API   发现了一个fullPage.js插件,于是百度了一下,还就是这个插件的作用,其实有很多网站都做了全屏滚动的特效,效果也很好看,今天 ...

  5. [转]C# 安装时弹出设置服务登录窗口

    本文转自:http://blog.csdn.net/prince_jun/article/details/38435887 安装服务时系统不要弹出设置服务登录窗口:在程序中将serviceProces ...

  6. c#之泛型详解(Generic)

    这篇文章主要来讲讲c#中的泛型,因为泛型在c#中有很重要的位置,对于写出高可读性,高性能的代码有着关键的作用. 一.什么是泛型? 泛型是 2.0 版 C# 语言和公共语言运行库 (CLR) 中的一个非 ...

  7. spring boot2.0

    1. Spring boot 简介 1.1 spring boot的三大特性 组件自动装配:Web mvc, Web Flux,JDBC等 激活:@EnableAutoConfiguration 配置 ...

  8. [FORWARD]ODBC 各种数据库连接串

    Overview Generally, one of the first steps when you are trying to work with databases is open it. Yo ...

  9. jQuery 自制上传头像插件-附带Demo实例(ajaxfileupload.js第三弹)

    这篇文章主要是对前两篇关于ajaxfileupload.js插件的文章 <ASP.NET 使用ajaxfileupload.js插件出现上传较大文件失败的解决方法(ajaxfileupload. ...

  10. socket 和 webscoket 的区别

    Socket和WebSocket的来源 Socket Socket大致是指在端到端的一个连接中,这两个端叫做Socket.对于IT从业者来说,它往往指的是TCP/IP网络环境中的两个连接端,大多数的A ...