Fix incorrectly assigning an NSNumber to blurEffect which resulted in a crash on -layoutSubviews

This commit is contained in:
Karol Kozub 2016-11-02 13:01:22 +01:00
parent 16107328bc
commit b7f2913f4e
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
- (void)setBlurAmount:(NSNumber *)blurAmount
{
blurEffect = [BlurAmount updateBlurAmount:blurAmount];
[BlurAmount updateBlurAmount:blurAmount];
}