Even though I have asked this question before, I would like to reach out again to clarify what I would like to accomplish with your help. I was wondering how you would create a background of and iOS application in xCode similar to the background of the Solar weather app (screenshots provided) that changes slightly over time (in a cycle). As you can see the gradient is very smooth and obviously contains more than two main points. Any help with example or snippets of code would be greatly appreciated. Thanks Again, Ben.
What I need is:
adding a
CAGradientLayer
to your view controller (or custom view), e.g.:In your view controller, in viewDidLoad, create and add the gradient layer to your view:
3a. add an NSTimer to your controller that will update
self.gradient
at proper intervals by doing:This will allow you to exactly decide which colour you want to use for the gradient at each step. Otherwise, you might try with an animation, like this:
3b. add the animation like this,
You might also combine 3a and 3b.
Simple working example:
.h file
.m file
You might want to implement an additional method to shift the colors, and then reanimate the changes. But this should help you get there.