Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix snapshotOfUnderlyingView #110

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: objective-c
xcode_project: Tests/FXBlurView/FXBlurView.xcodeproj
xcode_scheme: FXBlurView
xcode_sdk: iphonesimulator7.0
before_script:
- brew update
- brew upgrade xctool
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@
012FDEDB17D13C23003F0236 /* Frameworks */,
012FDEDA17D13C23003F0236 /* Products */,
);
indentWidth = 4;
sourceTree = "<group>";
tabWidth = 4;
};
012FDEDA17D13C23003F0236 /* Products */ = {
isa = PBXGroup;
Expand Down
4 changes: 2 additions & 2 deletions FXBlurView.podspec.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "FXBlurView",
"version": "1.6.3",
"version": "1.6.4",
"license": "zlib",
"summary": "UIView subclass that replicates the iOS 7 realtime background blur effect, but works on iOS 5 and above.",
"authors": {
"Nick Lockwood": "http://charcoaldesign.co.uk/"
},
"source": {
"git": "https://github.com/nicklockwood/FXBlurView.git",
"tag": "1.6.3"
"tag": "1.6.4"
},
"homepage": "http://github.com/nicklockwood/FXBlurView",
"platforms": {
Expand Down
7 changes: 6 additions & 1 deletion FXBlurView/FXBlurView.h
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// FXBlurView.h
//
// Version 1.6.3
// Version 1.6.4
//
// Created by Nick Lockwood on 25/08/2013.
// Copyright (c) 2013 Charcoal Design
Expand Down Expand Up @@ -64,6 +64,9 @@

@property (nonatomic, getter = isBlurEnabled) BOOL blurEnabled;
@property (nonatomic, getter = isDynamic) BOOL dynamic;
@property (nonatomic, getter = isAutoOptim) BOOL autoOptim;
@property (nonatomic, getter = isRevert) BOOL isRevert;

@property (nonatomic, assign) NSUInteger iterations;
@property (nonatomic, assign) NSTimeInterval updateInterval;
@property (nonatomic, assign) CGFloat blurRadius;
Expand All @@ -72,6 +75,8 @@

- (void)updateAsynchronously:(BOOL)async completion:(void (^)())completion;

- (void)clearImage;

@end


Expand Down
Loading