With iOS 8 SDK it's really easy to add a blur effect on a view.
On a UITableView
I've a UIVisualEffectView
with UIBlurEffect
on every cells. When I scroll cells there is a little "lag" on the views. I think it's because UIBlurEffect
is rendering in real-time.
Is it possible to unable this real-time rendering ? I would render the view just one time and after use it like a normal view. Because the image behind the UIVisualEffectView
never change.
Before iOS 8 I used FXBlurView
and it has this option. (github project)