TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Sep 2015 |
Maintained by Taiki Suzuki.
This is Objective-C version of SABlurImageView.
You can use blur effect and it's animation easily to call only two methods.
Add the SABlurImageViewObjc directory to your project.
To run the example project, clone the repo, and run pod install
from the Example directory first.
You have to write #import "SABlurImageView.h"
.
If you want to apply blur effect for image
SABlurImageView *imageView = [[SABlurImageView alloc] initWithImage:image];
[imageView addBlurEffect:30.0f times:1];
If you want to animate
SABlurImageView *imageView = [[SABlurImageView alloc] initWithImage:image];
[imageView configrationForBlurAnimation:100.0f];
[imageView startBlurAnimation:2.0f];
First time of blur animation is normal to blur. Second time is blur to normal. (automatically set configration of reverse animation)
If you want to use 0.0 to 1.0 parameter
SABlurImageView *imageView = [[SABlurImageView alloc] initWithImage:image];
[imageView configrationForBlurAnimation:100.0f];
[imageView blur:0.5f];
SABlurImageViewObjc is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "SABlurImageViewObjc"
Taiki Suzuki, [email protected]
SABlurImageView is available under the MIT license. See the LICENSE file for more info.