在 UIView 上轻松动画渐变过渡。在 动作 中查看。
BKEAnimatedGradientView *gradientView = [[BKEAnimatedGradientView alloc] initWithFrame:self.view.frame];
[gradientView setGradientColors:@[[UIColor blueColor], [UIColor greenColor]]];
[self.view addSubview:gradientView];
[gradientView changeGradientWithAnimation:@[[UIColor redColor], [UIColor orangeColor]] delay:1 duration:5];
只需将文件 BKEAnimatedGradientView.h
和 BKEAnimatedGradientView.m
添加到您的项目中。