Quote:
Originally Posted by baja_yu
Create the glow effect in Photoshop/Gimp etc, and switch the images.
|
The glow should be animated (e.g. fade out), so I don't see how switching to a static image would help.
Let me explain the effect I'm trying to create.
I'm trying to create an outer glow around the UIImageView. The glow doesn't touch or obscure the image.
The glow extends out from the edges of the UIImageView, so it is much larger than the UIImageView.
And, I don't know how to layer the glow on top of the image, because the image itself isn't
a subview. I create it like so:
Code:
UIImageView *view = [[UIImageView alloc] initWithImage:myImage];
How to add an outer-edge glow image to this, which would be much larger than the original image?