SkillAgentSearch skills...

RWBlurPopover

Show a UIViewController in a popover with background blurred.

Install / Use

/learn @eternityz/RWBlurPopover
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

RWBlurPopover

Show a UIViewController in a popover with background blurred. Introduced in China Air Quality Index.

<p align="center"> <a href="http://zhangbin.cc/temp/RWBlurPopover3/demo.mp4"><img src="https://raw.githubusercontent.com/eternityz/RWBlurPopover/master/demo.gif" /></a> </p>

Demo Video

iOS 7.0+ is required. "Throwing away to dismiss" gesture is inspired by Tweetbot.

NOTE: Release 3.0.0 of RWBlurPopover is incompatible with previous releases.

Installation

  • Add a pod description into your podfile:
pod 'RWBlurPopover', '~> 3.0.0'

OR

  • Clone this repo, drop .h and .m files from RWBlurPopover into your project.

Useage

  • Include RWBlurPopover whenever you need it with #import <RWBlurPopover/RWBlurPopover.h>.

  • Present a UIViewController inside a popover with background blurred:

[RWBlurPopover showContentViewController:contentViewController insideViewController:presentingViewController];

OR:

RWBlurPopover *popover = [[RWBlurPopover alloc] initWithContentViewController:nav];
[popover showInViewController:self];
  • Disable dismissing by tapping on blur background view (default is enabled):
popover.tapBlurToDismiss = NO;
  • Disable dismissing by "throwing" gesture (default is enabled):
popover.throwingGestureEnabled = NO;
  • Dismiss the view controller presented by RWBlurPopover programmatically:
[contentViewController dismissViewControllerAnimated:YES completion:nil];

License

MIT License

View on GitHub
GitHub Stars225
CategoryDevelopment
Updated1y ago
Forks47

Languages

Objective-C

Security Score

80/100

Audited on Feb 26, 2025

No findings