SABlurImageView icon indicating copy to clipboard operation
SABlurImageView copied to clipboard

Animation

Open rahulbbit opened this issue 6 years ago • 0 comments

The transition of this code is really smooth, but this animates the whole view to full blur effect. I want only upto few float points

[imageView startBlurAnimation:2.0f];

So for that i am using this

[UIView animateWithDuration:2.0f animations:^{
            [self.imageView blur:0.5f];
          }];

but the animation is not smooth as the upper one. So there any way where i can achieve the smoothness of startBlurAnimation and blur upto 0.5f???

rahulbbit avatar Nov 10 '17 13:11 rahulbbit