2

I want the UITableViewCell's background to have an iOS7 blur effect. It's dynamic, means, while the cell is scrolling, its blurred background should change depend on the color below.

I found some relative topics.

iPhone SDK - Frosted Glass (iOS 7 Blur) Effect. It introduce GPUImage. It about still image, I didn't figure out how to make a dynamic one.

iOS 7 dynamic blur effect like in Control Center. It use UIToolbar as the background of cell, taking advantage of system built-in blur effect. It works great, but just the transparency is a little low. I have adjusted the alpha of tool bar, but it doesn't ideal.

Community
  • 1
  • 1
leavez
  • 2,119
  • 2
  • 27
  • 36
  • See http://stackoverflow.com/questions/17055740/how-can-i-produce-an-effect-similar-to-the-ios-7-blur-view – bcattle Feb 04 '14 at 02:40

1 Answers1

10

Just like you said, there is possibility to use UIToolbar to get real-time blur. Here is a little class to get desired modification of appearance:

https://github.com/ivoleko/ILTranslucentView

Ivo Leko
  • 720
  • 1
  • 10
  • 20