I am making an image editor application.
I am able to change the UIImage
of a UIImageView
but I want it to be more efficient and beautiful.
Currently I am changing UIImage
as
if(image)
{
userImageView.image = image;
}
It directly changes the UIImage
. How can I make a fadeIn-fadeOut
effect?