I am searching for a image class which is mutable.
As you know NSArray is not mutable and NSMutableArray is mutable.
Apple Documentation about UIImage
Image objects are immutable, so you cannot change their properties after creation.
What I want is to change the color of an image after creation.
How is it possible?