I am setting a background image to view controller. But also i want to add blur effect to this background. How can I do this?
I am setting background with following
Found another way.. I use apple's UIImage+ImageEffects.
UIImage *effectImage = [image applyExtraLightEffect]; self.imageView.image = effectImage;