One possible way of doing it is apply background color animation on view's layer.
Now to pass through entire spectrum you have to work on combinations of three colors.
The best way to achieve this is to use 'Hue'.
[[UIColor alloc] initWithHue:135/360.0f saturation:1
brightness:1 alpha:1]
Now you have to iterate for all Hue values and you will get the smooth transition that goes across all the spectrum.
Sample code:
- make a local variable
int _currentColorHue = 0;
- recursive call for change background color.
-(void)animateMyView
{
[UIView animateWithDuration:0.01 animations:^{
self.view.layer.backgroundColor = [[UIColor alloc] initWithHue:_currentColorHue/360.0f saturation:1 brightness:1 alpha:1].CGColor;
} completion:^(BOOL finished)
{
_currentColorHue++;
if (_currentColorHue > 360)
{
_currentColorHue = 0;
}
[self animateMyView];
}];
}
You can stop the animation according to your use.