Dismissable
Introduction
Dismissable
is super convenient to dismiss with gesture!
Requirements
Dismissable
is written in Swift 4.2. Compatible with iOS 9.0+
Installation
Cocoapods
Dismissable is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'Dismissable'
Carthage
github "younatics/Dismissable"
Usage
Conform DismissTriggerUsable
where present modal ViewController
class ViewController: UIViewController, DismissTriggerUsable
Conform DismissableUsable
in modal ViewController
class DetailViewController: UIViewController, DismissableUsable
Add dismissable
when prsent modal view
let vc = UIStoryboard.init(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "detail") as! DetailViewController
self.present(vc, animated: true, completion: nil)
// Add optional scrollView argument when you need to prevent scroll event when offset is big
vc.setup(self, scrollView: vc.tableView)
Also you can customize dismiss animator
var dismissAnimator: DismissAnimator = {
let animator = DismissAnimator()
animator.transitionDuration = 0.35
animator.dimmedViewStartColor = UIColor.black.withAlphaComponent(0.4)
animator.dimmedViewEndColor = UIColor.black.withAlphaComponent(0)
return animator
}()
References
Please tell me or make pull request if you use this library in your application :)
Author
License
Dismissable is available under the MIT license. See the LICENSE file for more info.