Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rnystrom/RNBlurModalView
Add depth to your alerts.
https://github.com/rnystrom/RNBlurModalView
Last synced: 3 months ago
JSON representation
Add depth to your alerts.
- Host: GitHub
- URL: https://github.com/rnystrom/RNBlurModalView
- Owner: rnystrom
- License: mit
- Created: 2012-10-19T20:05:05.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T23:13:24.000Z (almost 2 years ago)
- Last Synced: 2024-07-20T09:25:06.394Z (4 months ago)
- Language: Objective-C
- Size: 477 KB
- Stars: 831
- Watchers: 52
- Forks: 143
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
RNBlurModalView
====RNBlurModal adds *depth* to the traditional modal/alert view. Calling the view is incredibly similar to setting up and showing a UIAlertView. You can also setup your own custom views and display them with a blurry background. The goal is to truly draw the user's focus directly to your alert using natural effects. This project works on all iOS devices at all orientations with ARC.
## Installation
### With CocoaPods
Just add this line to your podfile```
pod 'RNBlurModalView', '~> 0.1.0'
```### Manual installation
Super simple. Just drag & drop RNBlurModalView.h/.m into your project. In your Project, find the Build Phases tab and expand Link Binary With Libraries. Add the following frameworks to your project:
* QuartzCore.framework
* Accelerate.frameworkAdditionally in your project, under the Build Phases tab, expand Compile Sources and add RNBlurModalView.m.
## Usage
The simplest way to get up and running with RNBlurModalView is to display a default view. Inside of your view controller, write the following code:
``` objective-c
RNBlurModalView *modal = [[RNBlurModalView alloc] initWithViewController:self title:@"Hello world!" message:@"Pur your message here."];
[modal show];
```You can also create a modal view with your own custom UIViews:
``` objective-c
RNBlurModalView *modal = [[RNBlurModalView alloc] initWithViewController:self view:view];
[modal show];
```## Caveat
The only thing I'll warn users about is that animations beneath the modal will be "paused". When it comes down to it, I am overlaying a UIImage on top of your controller. I've tried messing with some hacky
CADisplayLink
methods, but I can't seem to get a screenshot of the present *state* of the controller, just the configuration.## Configuration
Set a couple of different properties of your modal view to change how it appears:
``` objective-c
@property (assign) CGFloat animationDuration;
@property (assign) CGFloat animationDelay;
@property (assign) UIViewAnimationOptions animationOptions;
```For brevity, you can instead set these properties in the
show:
andhide:
methods.``` objective-c
// show
- (void)show;
- (void)showWithDuration:(CGFloat)duration delay:(NSTimeInterval)delay options:(UIViewAnimationOptions)options completion:(void (^)(void))completion;
// hide
- (void)hide;
- (void)hideWithDuration:(CGFloat)duration delay:(NSTimeInterval)delay options:(UIViewAnimationOptions)options completion:(void (^)(void))completion;
```## KVO & Notifications
As always, I try to include some helpers in case there are other objects that need to be notified of custom events.
##### NSNotifications
``` objective-c
extern NSString * const kRNBlurDidShowNotification;
extern NSString * const kRNBlurDidHidewNotification;
```##### KVO
``` objective-c
@property (assign, readonly) BOOL isVisible;
```## Contributions
The drawing for the dismiss button comes from [David Keegan's](http://davidkeegan.com/) awesome [KGModal](https://github.com/kgn/KGModal) project.
The blurring algorithm is applied from this [awesome blog post](http://indieambitions.com/idevblogaday/perform-blur-vimage-accelerate-framework-tutorial/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+IndieAmbitions+%28Indie+Ambitions%29).
## Contact
* [@nystrorm](https://twitter.com/nystrorm) on Twitter
* [@rnystrom](https://github.com/rnystrom) on Github
* rnystrom [at] whoisryannystrom [dot] com## License
Copyright (c) 2012 Ryan Nystrom (http://whoisryannystrom.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.