可变色的动画圆形加载视图。
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];