如何在Twitter上制作像个人资料网站一样的模糊效果?

时间:2014-01-03 13:46:00

标签: xcode animation uiscrollview blur

我想知道当我在Twitter和tweetbot上拖动到UIScrollview的顶部时,我是如何制作模糊效果的。我一直在四处寻找,但我没有在任何地方找到它。我知道我必须使用高斯模糊,但我不知道我将如何实现它。任何代码将不胜感激。

Twitter

Tweetbot

2 个答案:

答案 0 :(得分:6)

这是一个你正在寻找的项目。

  1. https://github.com/sibahota059/TwitterProfilePageBlurr
  2. https://github.com/lostincode/kickstarter-pulldown-bouncy
  3. 您需要在滚动时添加模糊效果。

    - (void) scrollViewDidScroll:(UIScrollView *)scrollView
    {
    // Add Blurr effect here.
    }
    

    一些类似的控件:

    1. http://rowboatrevolution.com/2012/02/uitableview-parallax-background-a-la-path/
    2. https://github.com/Rheeseyb/RBParallaxTableViewController

答案 1 :(得分:4)

我自己使用autolayout对此进行了破解。代码在Github上,here是一个漫长的过程。

tweetbot http://cocoacovers.com/images/1/final.gif

相关问题