BKEAnimatedGradientView 0.1

BKEAnimatedGradientView 0.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Unclaimed.




Easily animate gradient transitions on UIViews. View it in action.

Screenshot

Example Usage

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];

Adding To Your Project

Manually

Simply add the files BKEAnimatedGradientView.h and BKEAnimatedGradientView.m to your project.