AnimatedLoadingView 0.0.1

AnimatedLoadingView 0.0.1

测试已测试
Lang语言 Obj-CObjective C
许可证 MIT
发布最后发布2017年4月

Ernesto Kim 维护。



  • Ernesto Kim

可变色的动画圆形加载视图。

默认加载视图示例
AnimatedLoadingView *defaultLoadingView = [[AnimatedLoadingView alloc] initWithFrame:self.view.frame];
[self.view addSubview:defaultLoadingView];
[defaultLoadingView start];
可自定义加载视图示例
AnimatedLoadingView *colorChangeLoadingView = [[AnimatedLoadingView alloc] initWithFrame:self.textView.frame bgColor:[[UIColor blackColor] colorWithAlphaComponent:0.5] firstColor:[UIColor greenColor] secondColor:[UIColor purpleColor]];
[self.view addSubview:colorChangeLoadingView];
[colorChangeLoadingView start];
停止加载
[defaultLoadingView stop];
[colorChangeLoadingView stop];