M13ProgressSuite

简介:

M13ProgressSuite

 

https://github.com/Marxon13/M13ProgressSuite

 

A set of classes used to display progress information to users on iOS.

这是一系列进度信息显示效果的类.

 

Includes:

  • A interchangeable set of progress view of diffrent styles. All the progress views are based on the same superclass, allowing any of them to be switched with any other easily. 这是一个具有不同风格的进度条显示效果的view,所有子类都是继承至一个父类,允许他们彼此之间随意替换
  • A progress bar for UINavigationBar that works like Apple's Messages app. It also has the added feature of having an indeterminate style. 一个用于UINavigationBar的进度条,像Apple Messages的app的效果.
  • A HUD overlay that works over any UIView. Uses the M13ProgressView class to allow easy customizablility of the progress view. 这个HUD可以加载在任何view上面,使用M13ProgressView进行定制是很easy的一件事情.
  • A progress view that is styled like terminal. 类似于终端的进度条效果.
  • Complete documentation of each class. 每一个类都有详细的文档说明.

 

UINavigationController (M13ProgressViewBar)

Adds a progress bar to the UINavigationController's UINavigationBar. The progress bar is controlled through the UINavigationController.

将一个进度条信息添加到UINavigationController上面的UINavigationBar,这个进度条完全由UINavigationController所控制.

 

 

 

M13ProgressHUD

A customizable HUD that displays progress, and status information to the user. It uses the M13ProgressView class to allow easy changing of the progress view style.

一个定制的HUD用以显示进度效果,以及状态更改信息.使用M13ProgressView可以很方便的修改进度条的状态.

 

M13ProgressConsole

A progress view styled like Terminal on OS X.

类似于OS X的终端进度条效果.

 

M13ProgressViews

A set of progess view based off of the same superclass. Allowing easy switching between progress view. Each progress view has success and failure actions, an indeterminate mode, and appearance customization features.

一系列的进度条效果,都是继承于同一个父类.不同的进度条之间切换效果很容易.每一种进度条效果都有一个成功与失败的动作,以及一个中间状态,你还可以整体的定制它们的样式.

 

Known Bugs:

  • When the HUD is set to apply the iOS 7 style blur to the HUD background, it doesn't work. The screenshot of the superview is not taken in the proper CGRect. It seems to work when the mask type is set to iOS 7 Blur, I beleive it is because the CGRectOrigin is {0, 0}.
目录
相关文章
|
数据可视化 数据挖掘
R语言k-means聚类、层次聚类、主成分(PCA)降维及可视化分析鸢尾花iris数据集
R语言k-means聚类、层次聚类、主成分(PCA)降维及可视化分析鸢尾花iris数据集
|
存储 Python
Python中的yield到底是个什么鬼?
Python中的yield到底是个什么鬼?
161 2
Python中的yield到底是个什么鬼?
|
机器学习/深度学习 人工智能 算法
PAI:一站式机器学习平台,让你的数据智能之旅更加便捷
PAI:一站式机器学习平台,让你的数据智能之旅更加便捷 随着大数据和人工智能的飞速发展,越来越多的企业和开发者开始涉足机器学习的领域。然而,对于许多初学者来说,机器学习的复杂性和难度可能会让人望而生畏。这时,一个功能强大、易于使用的机器学习平台就显得尤为重要。今天,我就来为大家详细介绍一个来自阿里巴巴的PAI一站式机器学习平台,看看它是如何帮助开发者们轻松应对机器学习挑战的。
208 2
|
编译器 PHP
关于PHP编译器phpStorm找不到解释器的问题
关于PHP编译器phpStorm找不到解释器的问题
327 0
|
存储 机器学习/深度学习 弹性计算
热门实践丨如何结合实际业务进行 ECS 规格选型与容量验证
热门实践丨如何结合实际业务进行 ECS 规格选型与容量验证
|
负载均衡 Java 数据库连接
30 个 IDEA 常用小技巧,应有尽有,让你的撸码效率直接起飞...(3)
30 个 IDEA 常用小技巧,应有尽有,让你的撸码效率直接起飞...
306 0
30 个 IDEA 常用小技巧,应有尽有,让你的撸码效率直接起飞...(3)
|
安全 大数据 程序员
新互联网时代已来 ​WEB 3.0 会给我们带来哪些新机遇
新互联网时代已来 ​WEB 3.0 会给我们带来哪些新机遇
|
测试技术 Python
python+pytest接口自动化(4)-requests发送get请求
python中用于请求http接口的有自带的urllib和第三方库requests,但 urllib 写法稍微有点繁琐,所以在进行接口自动化测试过程中,一般使用更为简洁且功能强大的 requests 库。下面我们使用 requests 库发送get请求。
python+pytest接口自动化(4)-requests发送get请求